aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-iconv.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-iconv.c')
-rw-r--r--camel/camel-iconv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-iconv.c b/camel/camel-iconv.c
index de97052669..9bf614d148 100644
--- a/camel/camel-iconv.c
+++ b/camel/camel-iconv.c
@@ -41,8 +41,8 @@
struct _iconv_cache_bucket {
struct _iconv_cache_bucket *next;
struct _iconv_cache_bucket *prev;
- guint32 refcount;
- gboolean used;
+ guint32 refcount:31;
+ guint32 used:1;
iconv_t cd;
char *key;
};