diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-05-15 23:21:17 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-05-15 23:21:17 +0800 |
commit | dc63f2f76fec0d4a9015a154f75cb89a34367819 (patch) | |
tree | bdda73f01f703f66c9336a52d7536496db623ade /shell/e-config-upgrade.c | |
parent | e8525e5956c91d572356ff2af3a4857ceee6bb67 (diff) | |
download | gsoc2013-evolution-dc63f2f76fec0d4a9015a154f75cb89a34367819.tar.gz gsoc2013-evolution-dc63f2f76fec0d4a9015a154f75cb89a34367819.tar.zst gsoc2013-evolution-dc63f2f76fec0d4a9015a154f75cb89a34367819.zip |
[Patch from Antonio Xu <antonio.xu@sun.com>, #42491]
* e-config-upgrade.c (upgrade_xml_1_2_rec): Make it compile on
Forte.
svn path=/trunk/; revision=21189
Diffstat (limited to 'shell/e-config-upgrade.c')
-rw-r--r-- | shell/e-config-upgrade.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-config-upgrade.c b/shell/e-config-upgrade.c index 48f141bde8..9128dd6018 100644 --- a/shell/e-config-upgrade.c +++ b/shell/e-config-upgrade.c @@ -617,8 +617,8 @@ upgrade_xml_1_2_rec(xmlNodePtr node) { const char *value_tags[] = { "string", "address", "regex", "file", "command", NULL }; const char *rule_tags[] = { "title", NULL }; - const struct { - char *name; + struct { + const char *name; const char **tags; } tags[] = { { "value", value_tags }, |