aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-07 02:50:26 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-07 02:50:26 +0800
commit3f2af997888b0effbe80f2142db90ce22a0b6a3d (patch)
tree69771a478c6fd07959fb71ab26e5419638d2483b /e-util
parent655cd28a4391749fabe3e51bc7beba6f4e682e05 (diff)
downloadgsoc2013-evolution-3f2af997888b0effbe80f2142db90ce22a0b6a3d.tar
gsoc2013-evolution-3f2af997888b0effbe80f2142db90ce22a0b6a3d.tar.gz
gsoc2013-evolution-3f2af997888b0effbe80f2142db90ce22a0b6a3d.tar.bz2
gsoc2013-evolution-3f2af997888b0effbe80f2142db90ce22a0b6a3d.tar.lz
gsoc2013-evolution-3f2af997888b0effbe80f2142db90ce22a0b6a3d.tar.xz
gsoc2013-evolution-3f2af997888b0effbe80f2142db90ce22a0b6a3d.tar.zst
gsoc2013-evolution-3f2af997888b0effbe80f2142db90ce22a0b6a3d.zip
Fixed some warnings.
2000-12-06 Christopher James Lahey <clahey@helixcode.com> * gal/util/e-util.c, gal/widgets/e-font.c: Fixed some warnings. svn path=/trunk/; revision=6818
Diffstat (limited to 'e-util')
-rw-r--r--e-util/e-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c
index 9cc1b40b0a..ede1b3c8ab 100644
--- a/e-util/e-util.c
+++ b/e-util/e-util.c
@@ -504,7 +504,7 @@ gchar *
e_strstrcase (const gchar *haystack, const gchar *needle)
{
/* find the needle in the haystack neglecting case */
- gchar *ptr;
+ const gchar *ptr;
guint len;
g_return_val_if_fail (haystack != NULL, NULL);