aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@src.gnome.org>2008-06-10 06:37:20 +0800
committerCosimo Cecchi <cosimoc@src.gnome.org>2008-06-10 06:37:20 +0800
commite6d988259788b5d5eb1e2fda40cfb9c0f5c1700f (patch)
tree02c69f6027268e912a34f778a6eaaf524dd149c7 /lib
parent5296c935bf1faa6da9c4893060b2642e9a69962b (diff)
downloadgsoc2013-epiphany-e6d988259788b5d5eb1e2fda40cfb9c0f5c1700f.tar
gsoc2013-epiphany-e6d988259788b5d5eb1e2fda40cfb9c0f5c1700f.tar.gz
gsoc2013-epiphany-e6d988259788b5d5eb1e2fda40cfb9c0f5c1700f.tar.bz2
gsoc2013-epiphany-e6d988259788b5d5eb1e2fda40cfb9c0f5c1700f.tar.lz
gsoc2013-epiphany-e6d988259788b5d5eb1e2fda40cfb9c0f5c1700f.tar.xz
gsoc2013-epiphany-e6d988259788b5d5eb1e2fda40cfb9c0f5c1700f.tar.zst
gsoc2013-epiphany-e6d988259788b5d5eb1e2fda40cfb9c0f5c1700f.zip
Fix some build warnings. Bug #537487.
svn path=/trunk/; revision=8274
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-module.c b/lib/ephy-module.c
index 63e626ab9..86fa9bbe6 100644
--- a/lib/ephy-module.c
+++ b/lib/ephy-module.c
@@ -124,7 +124,7 @@ ephy_module_load (GTypeModule *gmodule)
if (module->library == NULL)
{
- g_warning (g_module_error());
+ g_warning ("%s", g_module_error());
return FALSE;
}
@@ -133,7 +133,7 @@ ephy_module_load (GTypeModule *gmodule)
if (!g_module_symbol (module->library, "register_module",
(void *) &register_func))
{
- g_warning (g_module_error());
+ g_warning ("%s", g_module_error());
g_module_close (module->library);
return FALSE;