diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-26 11:17:51 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-26 11:17:51 +0800 |
commit | a361cff4042770c35b2ae9f5dcfb6153711d2c41 (patch) | |
tree | d72b0dba1b2418d0fe1c4495d2fa477fa0b63b24 /e-util | |
parent | 04a042ee01dba30ba231c48ec7d172b6be1a6fca (diff) | |
download | gsoc2013-evolution-a361cff4042770c35b2ae9f5dcfb6153711d2c41.tar.gz gsoc2013-evolution-a361cff4042770c35b2ae9f5dcfb6153711d2c41.tar.zst gsoc2013-evolution-a361cff4042770c35b2ae9f5dcfb6153711d2c41.zip |
Fix compiler warnings in shell.
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-bconf-map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/e-util/e-bconf-map.h b/e-util/e-bconf-map.h index 1d72119c8c..e6e16de6d4 100644 --- a/e-util/e-bconf-map.h +++ b/e-util/e-bconf-map.h @@ -83,13 +83,13 @@ enum { }; typedef struct { - char *from; - char *to; - int type; + const gchar *from; + const gchar *to; + gint type; } e_gconf_map_t; typedef struct { - char *root; + const gchar *root; e_gconf_map_t *map; } e_gconf_map_list_t; |