diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-06 23:22:56 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-06 23:22:56 +0800 |
commit | f1e001698a5db0b0ea3136c973769e0f6019d9ea (patch) | |
tree | 11ba661d22bb7599846da2ff4fcfdda7464cb13f /camel/camel-text-index.c | |
parent | b268196c1cc77b65645661b1cab47a8211d69ec9 (diff) | |
download | gsoc2013-evolution-f1e001698a5db0b0ea3136c973769e0f6019d9ea.tar.gz gsoc2013-evolution-f1e001698a5db0b0ea3136c973769e0f6019d9ea.tar.zst gsoc2013-evolution-f1e001698a5db0b0ea3136c973769e0f6019d9ea.zip |
Same as below.
2003-03-06 Jeffrey Stedfast <fejj@ximian.com>
* camel-text-index.c (camel_utf8_next): Same as below.
* camel-search-private.c (camel_utf8_getc): Updated since not all
platforms/compiles support __inline__.
svn path=/trunk/; revision=20192
Diffstat (limited to 'camel/camel-text-index.c')
-rw-r--r-- | camel/camel-text-index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-text-index.c b/camel/camel-text-index.c index 60dc5b7402..710723168b 100644 --- a/camel/camel-text-index.c +++ b/camel/camel-text-index.c @@ -1384,7 +1384,7 @@ text_index_name_add_word(CamelIndexName *idn, const char *word) Because it doesn't hang/loop forever on bad data Used to clean up utf8 before it gets further */ -static __inline__ guint32 +static inline guint32 camel_utf8_next(const unsigned char **ptr, const unsigned char *ptrend) { register unsigned char *p = (unsigned char *)*ptr; |