diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-18 10:48:53 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-18 10:48:53 +0800 |
commit | 056584218d9ef139ecb2a54d4ebc0d11a08a6fd5 (patch) | |
tree | efda248a68e07fffec2a529149ae687cbf091688 /camel/providers | |
parent | e286346c8dfa7926b2384791bb868c36983052c0 (diff) | |
download | gsoc2013-evolution-056584218d9ef139ecb2a54d4ebc0d11a08a6fd5.tar gsoc2013-evolution-056584218d9ef139ecb2a54d4ebc0d11a08a6fd5.tar.gz gsoc2013-evolution-056584218d9ef139ecb2a54d4ebc0d11a08a6fd5.tar.bz2 gsoc2013-evolution-056584218d9ef139ecb2a54d4ebc0d11a08a6fd5.tar.lz gsoc2013-evolution-056584218d9ef139ecb2a54d4ebc0d11a08a6fd5.tar.xz gsoc2013-evolution-056584218d9ef139ecb2a54d4ebc0d11a08a6fd5.tar.zst gsoc2013-evolution-056584218d9ef139ecb2a54d4ebc0d11a08a6fd5.zip |
make 'colon' a const char *
svn path=/trunk/; revision=26406
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap4/camel-imap4-folder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/imap4/camel-imap4-folder.c b/camel/providers/imap4/camel-imap4-folder.c index e06b5ab563..0d84408cbc 100644 --- a/camel/providers/imap4/camel-imap4-folder.c +++ b/camel/providers/imap4/camel-imap4-folder.c @@ -362,10 +362,10 @@ uidset_add (struct _uidset *uidset, CamelMessageInfo *info) struct _uidset_range *node, *tail = uidset->tail; const char *iuid = camel_message_info_uid (info); size_t uidlen, len; + const char *colon; guint32 index; - char *colon; - /* Note: depends on integer overflow for initial tail->last value */ + /* Note: depends on integer overflow for initial 'add' */ for (index = tail->last + 1; index < messages->len; index++) { if (info == messages->pdata[index]) break; |