changeset 15693:cd02b303b81f

Fix the following compiler warning: nullclient.c:111: warning: missing initializer nullclient.c:111: warning: (near initialization for ¡Æglib_eventloops.input_get_error¡Ç)
author Mark Doliner <mark@kingant.net>
date Sat, 24 Feb 2007 20:25:07 +0000
parents 562eaef05fe5
children c463709294f8
files libpurple/example/nullclient.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/example/nullclient.c	Sat Feb 24 20:22:50 2007 +0000
+++ b/libpurple/example/nullclient.c	Sat Feb 24 20:25:07 2007 +0000
@@ -107,7 +107,8 @@
 	g_timeout_add,
 	g_source_remove,
 	glib_input_add,
-	g_source_remove
+	g_source_remove,
+	NULL
 };
 /*** End of the eventloop functions. ***/