aboutsummaryrefslogtreecommitdiffstats
path: root/libc/bionic/strtoull_l.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/bionic/strtoull_l.cpp')
-rw-r--r--libc/bionic/strtoull_l.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/bionic/strtoull_l.cpp b/libc/bionic/strtoull_l.cpp
index ba0bc6ad4..398ba0e94 100644
--- a/libc/bionic/strtoull_l.cpp
+++ b/libc/bionic/strtoull_l.cpp
@@ -28,7 +28,7 @@
#include <stdlib.h>
-unsigned long long strtoull_l(const char *nptr, char **endptr, size_t base,
+unsigned long long strtoull_l(const char *nptr, char **endptr, int base,
locale_t) {
return strtoull(nptr, endptr, base);
}