diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-17 00:11:55 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-21 10:52:36 +0800 |
commit | a538f3f3100dbdbae1ea172ae3b8344e650d529d (patch) | |
tree | f1f8b15c56dbe92e46352853373382af9bf92de0 /addressbook/conduit | |
parent | d8fd55f9ec0e70a0d5c8529ea989f8c272d0c443 (diff) | |
download | gsoc2013-evolution-a538f3f3100dbdbae1ea172ae3b8344e650d529d.tar.gz gsoc2013-evolution-a538f3f3100dbdbae1ea172ae3b8344e650d529d.tar.zst gsoc2013-evolution-a538f3f3100dbdbae1ea172ae3b8344e650d529d.zip |
Fix several types of pedantic compiler warnings.
Diffstat (limited to 'addressbook/conduit')
-rw-r--r-- | addressbook/conduit/address-conduit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/conduit/address-conduit.c b/addressbook/conduit/address-conduit.c index 79bcdc4750..a28c3c5f99 100644 --- a/addressbook/conduit/address-conduit.c +++ b/addressbook/conduit/address-conduit.c @@ -206,7 +206,7 @@ e_pilot_add_category_if_possible(char *cat_to_add, struct CategoryAppInfo *categ category->name[i][j] = '\0'; } - //find a desktop id that is not in use between 128 and 255 + /* find a desktop id that is not in use between 128 and 255 */ /* XXX desktopUniqueID should really be used for tracking * categories across renaming operations, but as Evo * doesn't have a concept of category UIDs or renaming, @@ -265,7 +265,7 @@ void e_pilot_local_category_to_remote(int * pilotCategory, } l = c_list; while(l && *pilotCategory == 0) { - //list != 0, so at least 1 category is assigned + /* list != 0, so at least 1 category is assigned */ category_string = e_pilot_utf8_to_pchar((const char *)l->data); for (i=0; i < PILOT_MAX_CATEGORIES; i++) { /* only 15 chars + nul in palm category name */ |