comparison 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
comparison
equal deleted inserted replaced
734:1d9f0efcfcee 735:2f027806cd48
222 last_iqs_check = now; 222 last_iqs_check = now;
223 } 223 }
224 224
225 // Keepalive 225 // Keepalive
226 if (KeepaliveDelay) { 226 if (KeepaliveDelay) {
227 if (now > LastPingTime + KeepaliveDelay) 227 if (now > LastPingTime + (time_t)KeepaliveDelay)
228 jb_keepalive(); 228 jb_keepalive();
229 } 229 }
230 } 230 }
231 231
232 inline enum imstatus jb_getstatus() 232 inline enum imstatus jb_getstatus()