* unify error printing a bit (starting with lowercase)

This commit is contained in:
Dirk-Jan C. Binnema
2010-11-30 22:20:27 +02:00
parent bc039e22d6
commit ba2918ca41
10 changed files with 23 additions and 23 deletions

View File

@ -140,7 +140,7 @@ save_parts (const char *path, MuConfigOptions *opts)
err = NULL;
msg = mu_msg_new (path, NULL, &err);
if (!msg) {
g_warning ("Error: %s", err->message);
g_warning ("error: %s", err->message);
g_error_free (err);
return FALSE;
}
@ -187,7 +187,7 @@ show_parts (const char* path, MuConfigOptions *opts)
err = NULL;
msg = mu_msg_new (path, NULL, &err);
if (!msg) {
g_warning ("Error: %s", err->message);
g_warning ("error: %s", err->message);
g_error_free (err);
return FALSE;
}