aboutsummaryrefslogtreecommitdiffstats
path: root/libc/bionic/strtoll_l.cpp
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-09-24 16:00:06 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-09-24 16:00:07 +0000
commitfc5a93f7a2ea2be740f2c909e8a6a192fa65adc8 (patch)
tree9c9f2068825c2f4ece4944373efb3ebb84109ace /libc/bionic/strtoll_l.cpp
parentebf37e38861e376ae47c72d45ab8de6703dd18f0 (diff)
parent3c5037f1b3b747e79d17a5f717d9f9c365132d33 (diff)
downloadandroid_bionic-fc5a93f7a2ea2be740f2c909e8a6a192fa65adc8.tar.gz
android_bionic-fc5a93f7a2ea2be740f2c909e8a6a192fa65adc8.tar.bz2
android_bionic-fc5a93f7a2ea2be740f2c909e8a6a192fa65adc8.zip
Merge "Fix incorrect parameter types for locale funcs."
Diffstat (limited to 'libc/bionic/strtoll_l.cpp')
-rw-r--r--libc/bionic/strtoll_l.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/bionic/strtoll_l.cpp b/libc/bionic/strtoll_l.cpp
index 05fb76083..47b126e05 100644
--- a/libc/bionic/strtoll_l.cpp
+++ b/libc/bionic/strtoll_l.cpp
@@ -28,6 +28,6 @@
#include <stdlib.h>
-long long strtoll_l(const char *nptr, char **endptr, size_t base, locale_t) {
+long long strtoll_l(const char *nptr, char **endptr, int base, locale_t) {
return strtoll(nptr, endptr, base);
}