summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Nunberg <mnunberg@users.noreply.github.com>2018-09-24 20:43:33 -0400
committerGitHub <noreply@github.com>2018-09-24 20:43:33 -0400
commitd153c1f3c0aa128d0b01ac136897052fd848244a (patch)
treec42474aaf053d0c4483f30f778624fcb0abd3d7d
parenta65537a672de845f3f4530050d1e7bd88d51ac67 (diff)
parentc3188bfb1fc59bd169b970ec159e1c9a2b949bf9 (diff)
Merge pull request #610 from thomaslee/tom_static_string2ll
Make string2ll static to avoid conflict with redis
-rw-r--r--read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/read.c b/read.c
index ef483f7..cc21267 100644
--- a/read.c
+++ b/read.c
@@ -154,7 +154,7 @@ static char *seekNewline(char *s, size_t len) {
* Because of its strictness, it is safe to use this function to check if
* you can convert a string into a long long, and obtain back the string
* from the number without any loss in the string representation. */
-int string2ll(const char *s, size_t slen, long long *value) {
+static int string2ll(const char *s, size_t slen, long long *value) {
const char *p = s;
size_t plen = 0;
int negative = 0;