# HG changeset patch # User Paul Aurich # Date 1255215508 0 # Node ID 53aab96e61a9527fe4a59cef66a2407b5059828b # Parent 401a0022761517a338e0c3db3a83e2e876ea272b Use the appropriate function to remove an input watcher. This wouldn't actually cause problems with most glib-based event loops. diff -r 401a00227615 -r 53aab96e61a9 libpurple/ft.c --- a/libpurple/ft.c Sat Oct 10 03:53:59 2009 +0000 +++ b/libpurple/ft.c Sat Oct 10 22:58:28 2009 +0000 @@ -1030,7 +1030,7 @@ * watcher. */ if (xfer->watcher != 0) { - purple_timeout_remove(xfer->watcher); + purple_input_remove(xfer->watcher); xfer->watcher = 0; }