aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2011-08-20 09:28:37 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:25 +0100
commit96e07f7ab0d651fb80349e51f28207f038c91a2a (patch)
treeb909851f517795417fcc09065098370a14f8fcba /cli/mmcli.c
parent387db2b2595c1c0d4432248c59c1b9df1c11c89d (diff)
cli: prefix error messages with 'error: '
Diffstat (limited to 'cli/mmcli.c')
-rw-r--r--cli/mmcli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c
index 60badf6a..19892cc0 100644
--- a/cli/mmcli.c
+++ b/cli/mmcli.c
@@ -132,7 +132,7 @@ main (gint argc, gchar **argv)
/* Setup dbus connection to use */
connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error);
if (!connection) {
- g_printerr ("couldn't get bus: %s\n",
+ g_printerr ("error: couldn't get bus: %s\n",
error ? error->message : "unknown error");
exit (EXIT_FAILURE);
}