diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-20 07:22:25 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-20 07:22:25 +0000 |
commit | 2c0c75e3454944ffb7eb3afef9c012c111331678 (patch) | |
tree | 5bf66e7fcaa26cb4a1e44bfe82085324b802b3c5 | |
parent | 236337ce86fc4ceb5dd1b185d238a9de51e85c07 (diff) |
oops, missed a define when I changed from Curl_ to curlx_
-rw-r--r-- | lib/strtoofft.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strtoofft.h b/lib/strtoofft.h index 0738bb474..c5bbccc84 100644 --- a/lib/strtoofft.h +++ b/lib/strtoofft.h @@ -43,7 +43,7 @@ #define strtoofft strtoll #else curl_off_t curlx_strtoll(const char *nptr, char **endptr, int base); -#define strtoofft Curl_strtoll +#define strtoofft curlx_strtoll #define NEED_CURL_STRTOLL #endif #else |