diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-14 11:57:36 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-14 11:57:36 +0200 |
commit | d30ec8f5a6054fb42e458bfadef0d2786a6b13d8 (patch) | |
tree | acdb94fd64e2b711e9fad9b719117b92c2a98de8 | |
parent | 2c1ce492cebd2a95de8b14abc644beb370d4f6b5 (diff) |
cli: minor text output fixes
-rw-r--r-- | cli/mmcli-sms.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/mmcli-sms.c b/cli/mmcli-sms.c index f35e84d6..798c2538 100644 --- a/cli/mmcli-sms.c +++ b/cli/mmcli-sms.c @@ -64,7 +64,7 @@ static GOptionEntry entries[] = { }, { "create-file-with-data", 0, 0, G_OPTION_ARG_STRING, &create_file_with_data_str, "Create a file with the data contents of the SMS.", - "[File path", + "[File path]", }, { NULL } }; @@ -164,7 +164,7 @@ print_sms_info (MMSms *sms) VALIDATE (mm_sms_get_number (sms))); if (mm_sms_get_text (sms)) - g_print (" | text : '%s'\n", + g_print (" | text: '%s'\n", VALIDATE (mm_sms_get_text (sms))); data = mm_sms_get_data (sms, &data_size); @@ -172,7 +172,7 @@ print_sms_info (MMSms *sms) gchar *data_hex; data_hex = mm_utils_bin2hexstr (data, data_size); - g_print (" | data : '%s'\n", + g_print (" | data: '%s'\n", VALIDATE (data_hex)); g_free (data_hex); } |