diff mcabber/src/jabglue.c @ 735:2f027806cd48

Some code cleanup This patch will kill a few pedantic warnings
author Mikael Berthe <mikael@lilotux.net>
date Thu, 09 Mar 2006 20:15:37 +0100
parents ab623c2df964
children 413e95f3051a
line wrap: on
line diff
--- a/mcabber/src/jabglue.c	Thu Mar 09 19:40:00 2006 +0100
+++ b/mcabber/src/jabglue.c	Thu Mar 09 20:15:37 2006 +0100
@@ -224,7 +224,7 @@
 
   // Keepalive
   if (KeepaliveDelay) {
-    if (now > LastPingTime + KeepaliveDelay)
+    if (now > LastPingTime + (time_t)KeepaliveDelay)
       jb_keepalive();
   }
 }