From 7f8cab85e3d035f34da1a3736bf0668797a3746a Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Thu, 15 Jan 2009 15:42:17 +0000 Subject: Compiler warning fix. 2009-01-15 Milan Crha * e-plugin.c: (epl_construct): Compiler warning fix. svn path=/trunk/; revision=37081 --- e-util/ChangeLog | 4 ++++ e-util/e-plugin.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 365589f575..5fc6526a85 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,7 @@ +2009-01-15 Milan Crha + + * e-plugin.c: (epl_construct): Compiler warning fix. + 2009-01-11 Matthew Barnes * e-error.c (ee_response): diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c index 7d778b59e0..d43238be0a 100644 --- a/e-util/e-plugin.c +++ b/e-util/e-plugin.c @@ -1100,7 +1100,7 @@ epl_construct(EPlugin *ep, xmlNodePtr root) tmp = xmlGetProp(root, (const unsigned char *)"load-on-startup"); if (tmp) { - if (strcmp (tmp, "after-ui") == 0) { + if (strcmp ((const char *)tmp, "after-ui") == 0) { missing_symbols = g_list_prepend (missing_symbols, g_object_ref (ep)); } else { if (epl_loadmodule(ep, FALSE) != 0) { -- cgit v1.2.3