diff options
author | Milan Crha <mcrha@redhat.com> | 2009-01-15 23:42:17 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2009-01-15 23:42:17 +0800 |
commit | 7f8cab85e3d035f34da1a3736bf0668797a3746a (patch) | |
tree | 4c11dc6b156c5214817281e4bcef9cc07e92810b /e-util | |
parent | 19265d6114dbc5ab7b4cc78a38dcafde13f37789 (diff) | |
download | gsoc2013-evolution-7f8cab85e3d035f34da1a3736bf0668797a3746a.tar.gz gsoc2013-evolution-7f8cab85e3d035f34da1a3736bf0668797a3746a.tar.zst gsoc2013-evolution-7f8cab85e3d035f34da1a3736bf0668797a3746a.zip |
Compiler warning fix.
2009-01-15 Milan Crha <mcrha@redhat.com>
* e-plugin.c: (epl_construct): Compiler warning fix.
svn path=/trunk/; revision=37081
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) { |