From 73f407b7ae8dd5810ceeec5e98434191c5bd0edc Mon Sep 17 00:00:00 2001
From: Yang Tse <yangsita@gmail.com>
Date: Thu, 13 Jul 2006 18:44:24 +0000
Subject: [PATCH] Fix compiler warning.

---
 lib/multi.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/multi.c b/lib/multi.c
index c59145414..674f7a913 100644
--- 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 {