From 371d4c3202de9fa52ab0ffd0a5726a18e0479a12 Mon Sep 17 00:00:00 2001 From: Bradley Smith Date: Fri, 7 Mar 2008 18:46:31 +0000 Subject: Add -pedantic-errors and -Werror flags to compile, and fix code to comply. Signed-off-by: Bradley Smith --- lib/textplugin.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/textplugin.c') diff --git a/lib/textplugin.c b/lib/textplugin.c index 32a5a56..da08710 100644 --- a/lib/textplugin.c +++ b/lib/textplugin.c @@ -227,6 +227,8 @@ text_plugin_get_property (GObject * object, guint prop_id, UserInterface * user_interface_new (Map *map, GType parent_type) { + TextPlugin *text; + g_return_val_if_fail (map != NULL, NULL); g_return_val_if_fail (_parent_type != 0 || parent_type != 0, NULL); @@ -234,8 +236,7 @@ user_interface_new (Map *map, GType parent_type) _parent_type = parent_type; } - TextPlugin *text = - TEXT_PLUGIN (g_object_new (text_plugin_get_type (), + text = TEXT_PLUGIN (g_object_new (text_plugin_get_type (), "map", map, NULL)); if (text->errors) { -- cgit v1.1