main: Print "error: " prefix on errors
It's just clearer that something went wrong.
This commit is contained in:
parent
32d2cd57c1
commit
8cb348315e
|
|
@ -71,7 +71,7 @@ main (int argc,
|
||||||
|
|
||||||
if (error != NULL)
|
if (error != NULL)
|
||||||
{
|
{
|
||||||
g_printerr ("%s\n", error->message);
|
g_printerr ("error: %s\n", error->message);
|
||||||
g_error_free (error);
|
g_error_free (error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue