diff options
author | Milan Crha <mcrha@redhat.com> | 2009-07-28 02:55:30 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-11 07:31:44 +0800 |
commit | cdd06c393d2c6dd0b5716a354aecc92c8457dc4d (patch) | |
tree | d46a3dd43d651e297b8e273388ae9fea63d88270 /addressbook/conduit | |
parent | 741d49c900ecc01002513060826b43dc26d4e55d (diff) | |
download | gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.gz gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.bz2 gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.lz gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.xz gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.zst gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.zip |
Compiler warning fixes (as part of bug #424078)
Diffstat (limited to 'addressbook/conduit')
-rw-r--r-- | addressbook/conduit/address-conduit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/conduit/address-conduit.c b/addressbook/conduit/address-conduit.c index 67bba341e7..172d45ee30 100644 --- a/addressbook/conduit/address-conduit.c +++ b/addressbook/conduit/address-conduit.c @@ -184,7 +184,7 @@ e_pilot_add_category_if_possible(gchar *cat_to_add, struct CategoryAppInfo *cate retval = i; if (cat_to_add_len > 15) { - gchar tmpstr[16]; + gchar tmpstr[17]; strncpy(tmpstr, cat_to_add,16); tmpstr[16] = '\0'; /* Have to truncate the category name */ |