diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 4 | ||||
-rw-r--r-- | e-util/e-plugin.c | 2 |
2 files changed, 5 insertions, 1 deletions
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 <mcrha@redhat.com> + + * e-plugin.c: (epl_construct): Compiler warning fix. + 2009-01-11 Matthew Barnes <mbarnes@redhat.com> * 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) { |