diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-11-10 21:34:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-11-10 21:34:44 +0800 |
commit | fce8b158d7cf5a6d6dc7399e06a967d8864642aa (patch) | |
tree | cabc059d1a18d53fa4f941ff1ccdf7ab2496dd59 | |
parent | fa7475f9cbfa736852e3670bb7e35997716cc7fb (diff) | |
download | gsoc2013-epiphany-fce8b158d7cf5a6d6dc7399e06a967d8864642aa.tar gsoc2013-epiphany-fce8b158d7cf5a6d6dc7399e06a967d8864642aa.tar.gz gsoc2013-epiphany-fce8b158d7cf5a6d6dc7399e06a967d8864642aa.tar.bz2 gsoc2013-epiphany-fce8b158d7cf5a6d6dc7399e06a967d8864642aa.tar.lz gsoc2013-epiphany-fce8b158d7cf5a6d6dc7399e06a967d8864642aa.tar.xz gsoc2013-epiphany-fce8b158d7cf5a6d6dc7399e06a967d8864642aa.tar.zst gsoc2013-epiphany-fce8b158d7cf5a6d6dc7399e06a967d8864642aa.zip |
Fix compile warning.
2003-11-10 Christian Persch <chpe@cvs.gnome.org>
* lib/egg/egg-toolbars-model.c: (egg_toolbars_model_load):
Fix compile warning.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | lib/egg/egg-toolbars-model.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2003-11-10 Christian Persch <chpe@cvs.gnome.org> + + * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_load): + + Fix compile warning. + 2003-11-09 Christian Persch <chpe@cvs.gnome.org> * src/session.c: (save_tab): diff --git a/lib/egg/egg-toolbars-model.c b/lib/egg/egg-toolbars-model.c index d28e95ec6..421184e2f 100755 --- a/lib/egg/egg-toolbars-model.c +++ b/lib/egg/egg-toolbars-model.c @@ -430,7 +430,7 @@ egg_toolbars_model_load (EggToolbarsModel *t, xmlDocPtr doc; xmlNodePtr root; - g_return_if_fail (IS_EGG_TOOLBARS_MODEL (t)); + g_return_val_if_fail (IS_EGG_TOOLBARS_MODEL (t), FALSE); doc = xmlParseFile (xml_file); if (doc == NULL) |