main: Print "error: " prefix on errors

It's just clearer that something went wrong.
This commit is contained in:
Colin Walters 2013-07-10 13:25:15 -04:00
parent 32d2cd57c1
commit 8cb348315e
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ main (int argc,
if (error != NULL)
{
g_printerr ("%s\n", error->message);
g_printerr ("error: %s\n", error->message);
g_error_free (error);
}