aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r--e-util/e-util.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c
index e24903bc71..5bffc9e4a9 100644
--- a/e-util/e-util.c
+++ b/e-util/e-util.c
@@ -52,16 +52,16 @@ g_int_compare(const void *x, const void *y)
}
char *
-e_strdup_strip(char *string)
+e_strdup_strip(const char *string)
{
int i;
int length = 0;
int initial = 0;
for ( i = 0; string[i]; i++ ) {
- if (initial == i && isspace(string[i])) {
+ if (initial == i && isspace((unsigned char) string[i])) {
initial ++;
}
- if (!isspace(string[i])) {
+ if (!isspace((unsigned char) string[i])) {
length = i - initial + 1;
}
}
@@ -500,7 +500,7 @@ e_strsplit (const gchar *string,
return str_array;
}
-const gchar *
+gchar *
e_strstrcase (const gchar *haystack, const gchar *needle)
{
/* find the needle in the haystack neglecting case */
@@ -515,11 +515,11 @@ e_strstrcase (const gchar *haystack, const gchar *needle)
return NULL;
if (len == 0)
- return haystack;
+ return (gchar *) haystack;
for (ptr = haystack; *(ptr + len - 1) != '\0'; ptr++)
if (!g_strncasecmp (ptr, needle, len))
- return ptr;
+ return (gchar *) ptr;
return NULL;
}