diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-20 17:56:38 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-20 17:56:38 +0200 |
commit | c1bc4303ceeb04766adc7700efa86e42110b7874 (patch) | |
tree | 03662533a8024604d95b539756711d74a55422de /src/common/cfgfiles.c | |
parent | 99b68f6e24987837486c75bfced6ecbb27881729 (diff) |
Fix TYPE_BOOL vs unsigned int inconsistency
Diffstat (limited to 'src/common/cfgfiles.c')
-rw-r--r-- | src/common/cfgfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c index ef51cb75..014f6d98 100644 --- a/src/common/cfgfiles.c +++ b/src/common/cfgfiles.c @@ -583,7 +583,7 @@ const struct prefs vars[] = { {"text_background", P_OFFSET (background), TYPE_STR}, {"text_color_nicks", P_OFFINT (colorednicks), TYPE_BOOL}, #ifdef WIN32 - {"text_emoticons", P_OFFINT (emoticons), TYPE_BOOL}, + {"text_emoticons", P_OFFINT (text_emoticons), TYPE_BOOL}, #endif {"text_font", P_OFFSET (font_normal), TYPE_STR}, #ifdef WIN32 |