* make error messages more consistent

This commit is contained in:
Dirk-Jan C. Binnema
2010-11-30 09:02:29 +02:00
parent 00bd5e1c87
commit 2b393ed7c5
7 changed files with 36 additions and 26 deletions

View File

@ -256,7 +256,7 @@ parse_params (MuConfigOptions *opts, int *argcp, char ***argvp)
err = NULL;
rv = g_option_context_parse (context, argcp, argvp, &err);
if (!rv) {
g_printerr ("error in options: %s\n", err->message);
g_warning ("error in options: %s\n", err->message);
g_error_free (err);
}