diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-08-12 15:54:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-17 10:26:53 +0200 |
commit | 80d9e35598d5e6029dc4c90bf3da885682936d2a (patch) | |
tree | 952d270ac713d7b9373d6020976a9dd9c0dbc421 /src/tool_paramhlp.c | |
parent | c95eff4a11575a5973fad20619ff7ca3989316db (diff) | |
download | curl-80d9e35598d5e6029dc4c90bf3da885682936d2a.tar.gz |
system.h: remove all CURL_SIZEOF_* defines
... as they're not used externally and internally we check for the sizes
already in configure etc.
Closes #1767
Diffstat (limited to 'src/tool_paramhlp.c')
-rw-r--r-- | src/tool_paramhlp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_paramhlp.c b/src/tool_paramhlp.c index 86a3fe6b0..80d47573f 100644 --- a/src/tool_paramhlp.c +++ b/src/tool_paramhlp.c @@ -399,7 +399,7 @@ ParameterError str2offset(curl_off_t *val, const char *str) /* offsets aren't negative, this indicates weird input */ return PARAM_NEGATIVE_NUMERIC; -#if(CURL_SIZEOF_CURL_OFF_T > CURL_SIZEOF_LONG) +#if(SIZEOF_CURL_OFF_T > SIZEOF_LONG) { CURLofft offt = curlx_strtoofft(str, &endptr, 0, val); if(CURL_OFFT_FLOW == offt) |