diff options
Diffstat (limited to 'shell/e-config-upgrade.c')
-rw-r--r-- | shell/e-config-upgrade.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/e-config-upgrade.c b/shell/e-config-upgrade.c index 9848ac09e2..4d574cc28e 100644 --- a/shell/e-config-upgrade.c +++ b/shell/e-config-upgrade.c @@ -1341,7 +1341,11 @@ static int import_bonobo_config(xmlDocPtr config_doc, GConfClient *gconf) if (val == NULL) continue; } - d(printf(" %s = '%s' -> %s [%d]\n", map[j].from, val, map[j].to, map[j].type)); + d(printf(" %s = '%s' -> %s [%d]\n", + map[j].from, + val == NULL ? "(null)" : val, + map[j].to, + map[j].type)); path = g_strdup_printf("/apps/evolution/%s", map[j].to); switch(map[j].type) { case BMAP_BOOL: |