diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-05-07 18:30:38 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-05-09 09:57:55 +0200 |
commit | 2c1dada695b6c9c7e81cdcff535096724e246cfd (patch) | |
tree | 18db704b4a895493117da6154235afa65f9a2886 | |
parent | f0d5647249279883e0babcf24955f466059cc82e (diff) |
qmicli,loc: don't use g_printerr() for success messages
(cherry picked from commit 0164f6bfe7ece9d1fb485739e593f640b66be26f)
-rw-r--r-- | src/qmicli/qmicli-loc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmicli/qmicli-loc.c b/src/qmicli/qmicli-loc.c index f429d87..eeaeb79 100644 --- a/src/qmicli/qmicli-loc.c +++ b/src/qmicli/qmicli-loc.c @@ -688,13 +688,13 @@ delete_assistance_data_received (QmiClientLoc *cli GError *error = NULL; if (!qmi_indication_loc_delete_assistance_data_output_get_indication_status (output, &status, &error)) { - g_printerr ("Couldn't delete assistance data: %s\n", error->message); + g_printerr ("error: couldn't delete assistance data: %s\n", error->message); g_error_free (error); operation_shutdown (FALSE); return; } - g_printerr ("Successfully deleted assistance data\n"); + g_print ("Successfully deleted assistance data\n"); operation_shutdown (TRUE); } |