diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2012-01-02 15:24:32 -0800 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2012-01-02 15:24:50 -0800 |
commit | 9ea54feef0f2e62f7618da9b0ce3acce9f474db6 (patch) | |
tree | d28f3ef01a8e7926470ee36eb1e0945c82393b9a /src/util.h | |
parent | 2ebd2720b37dcca3b6e0c18377bd69e9eaf541fc (diff) | |
download | redis-9ea54feef0f2e62f7618da9b0ce3acce9f474db6.tar.gz |
string2* functions take a const pointer
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h index b897a89e7..59dd10ac7 100644 --- a/src/util.h +++ b/src/util.h @@ -5,8 +5,8 @@ int stringmatchlen(const char *p, int plen, const char *s, int slen, int nocase) int stringmatch(const char *p, const char *s, int nocase); long long memtoll(const char *p, int *err); int ll2string(char *s, size_t len, long long value); -int string2ll(char *s, size_t slen, long long *value); -int string2l(char *s, size_t slen, long *value); +int string2ll(const char *s, size_t slen, long long *value); +int string2l(const char *s, size_t slen, long *value); int d2string(char *buf, size_t len, double value); #endif |