From f775a9c82585d50ff65a32a09829d9aff69bc5e3 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Thu, 9 Mar 2006 10:49:17 +0000 Subject: [PATCH] return FALSE, not NULL from boolean function --- plug-ins/imagemap/imap_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/imagemap/imap_main.c b/plug-ins/imagemap/imap_main.c index 6e417d6a81..69eb498078 100644 --- a/plug-ins/imagemap/imap_main.c +++ b/plug-ins/imagemap/imap_main.c @@ -1096,7 +1096,7 @@ button_press(GtkWidget* widget, GdkEventButton* event, gpointer data) if (_button_press_func) return _button_press_func(widget, event, _button_press_param); - return NULL; + return FALSE; } /* A few global vars for key movement */