Mercurial > pidgin.yaz
changeset 17668:010e8f32a0af
Compiler be quiet! Fixes this compile warning:
idle.c: In function 'check_idleness':
idle.c:124: warning: 'idle_recheck_interval' may be used uninitialized in this function
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Sun, 03 Jun 2007 01:05:59 +0000 |
parents | 98f27c7f0ef5 |
children | a61c101c26c3 0e4a789cd027 5c34a0a3c362 |
files | libpurple/idle.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/idle.c Sat Jun 02 19:05:28 2007 +0000 +++ b/libpurple/idle.c Sun Jun 03 01:05:59 2007 +0000 @@ -121,7 +121,7 @@ gboolean report_idle; GList *l; gint away_seconds = 0; - gint idle_recheck_interval; + gint idle_recheck_interval = 0; purple_signal_emit(purple_blist_get_handle(), "update-idle");