diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-11 13:13:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-11 13:13:35 +0000 |
commit | e545e33d5fd4f021220f09cf8fb05c66db2a4bf4 (patch) | |
tree | 0330232d9a4b0a572b066776f2615a770dcb355d /lib/timeval.c | |
parent | 326e8b9fc1e6bc3b83c09ecaea96f10a403edcf5 (diff) | |
download | curl-e545e33d5fd4f021220f09cf8fb05c66db2a4bf4.tar.gz |
Gisle Vanem's fixes to use CURL_SOCKET_BAD more instead of -1 for sockets.
Diffstat (limited to 'lib/timeval.c')
-rw-r--r-- | lib/timeval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/timeval.c b/lib/timeval.c index 736d5631d..dff9aa841 100644 --- a/lib/timeval.c +++ b/lib/timeval.c @@ -63,6 +63,7 @@ static int gettimeofday(struct timeval *tp, void *nothing) tp->tv_sec = Sec; tp->tv_usec = Usec; #endif /* WITHOUT_MM_LIB */ + (void)nothing; return 0; } #else /* WIN32 */ |