projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4be7dcb
)
Fix compiler warning.
author
Yang Tse
<yangsita@gmail.com>
Thu, 13 Jul 2006 18:44:24 +0000
(18:44 +0000)
committer
Yang Tse
<yangsita@gmail.com>
Thu, 13 Jul 2006 18:44:24 +0000
(18:44 +0000)
lib/multi.c
patch
|
blob
|
history
diff --git
a/lib/multi.c
b/lib/multi.c
index
c591454
..
674f7a9
100644
(file)
--- a/
lib/multi.c
+++ b/
lib/multi.c
@@
-1311,7
+1311,8
@@
void Curl_expire(struct SessionHandle *data, long milli)
if(rc)
infof(data, "Internal error clearing splay node = %d\n", rc);
infof(data, "Expire cleared\n");
- nowp->tv_sec = nowp->tv_usec = 0;
+ nowp->tv_sec = 0;
+ nowp->tv_sec = 0;
}
}
else {