diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-11 04:35:43 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-11 04:35:43 +0800 |
commit | dd38706a9233bcda550f2fbc5c2df0dfe92f5fe5 (patch) | |
tree | 70110db37a321a46ed922d52884d680ecc9dd142 /e-util/e-html-utils.c | |
parent | b3bdc8f5ea9cb2a023257efa696e99bca0665a7b (diff) | |
download | gsoc2013-evolution-dd38706a9233bcda550f2fbc5c2df0dfe92f5fe5.tar.gz gsoc2013-evolution-dd38706a9233bcda550f2fbc5c2df0dfe92f5fe5.tar.zst gsoc2013-evolution-dd38706a9233bcda550f2fbc5c2df0dfe92f5fe5.zip |
Fix warnings.
* e-html-utils.c: Fix warnings.
svn path=/trunk/; revision=4048
Diffstat (limited to 'e-util/e-html-utils.c')
-rw-r--r-- | e-util/e-html-utils.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c index a1f76d4e68..62eb4c5d53 100644 --- a/e-util/e-html-utils.c +++ b/e-util/e-html-utils.c @@ -62,9 +62,9 @@ check_size (char **buffer, int *buffer_size, char *out, int len) } static char * -url_extract (const char **text, gboolean check) +url_extract (const unsigned char **text, gboolean check) { - const char *end = *text, *p; + const unsigned char *end = *text, *p; char *out; while (*end && !isspace (*end) && *end != '"') @@ -215,7 +215,8 @@ e_text_to_html (const char *input, unsigned int flags) case ' ': if (flags & E_TEXT_TO_HTML_CONVERT_SPACES) { - if (cur == input || *(cur + 1) == ' ') { + if (cur == (const unsigned char *)input || + *(cur + 1) == ' ') { strcpy (out, " "); out += 6; break; |