* mu-cmd-index: cosmetic

This commit is contained in:
Dirk-Jan C. Binnema 2010-10-09 12:53:02 +03:00
parent 76815e4416
commit 4e06349e65
1 changed files with 2 additions and 2 deletions

View File

@ -86,13 +86,13 @@ check_index_params (MuConfigOptions *opts)
if (!opts->maildir || !g_path_is_absolute (opts->maildir)) {
g_warning ("maildir path '%s' is not valid",
opts->maildir);
opts->maildir ? opts->maildir : "<none>");
return FALSE;
}
if (!mu_util_check_dir (opts->maildir, TRUE, FALSE)) {
g_warning ("not a valid Maildir: %s",
opts->maildir);
opts->maildir ? opts->maildir : "<none>");
return FALSE;
}