diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-01-28 17:38:58 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-28 17:38:58 +0000 |
commit | 9bca9681bad0614fd0ba27e935ded37edf23985a (patch) | |
tree | 42a8f464ed6c00dd2dad9f52dd0fca094139de11 /src | |
parent | 958987c214cacdfaad6fa960b39e0c917f43af2d (diff) |
Gisle has eyes, I don't
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 6bd153147..05d59f230 100644 --- a/src/main.c +++ b/src/main.c @@ -1009,7 +1009,7 @@ static int str2offset(curl_off_t *val, char *str) *val = strtoll(str, NULL, 0); #else /* this is a duplicate of the function that is also used in libcurl */ - *val = Curl_strtoll(str, NULL, 0; + *val = Curl_strtoll(str, NULL, 0); #endif if ((*val == LLONG_MAX || *val == LLONG_MIN) && errno == ERANGE) |