diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-09-16 14:51:27 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-11 08:16:04 +0000 |
commit | 227c2907785c5add14a13f36d9129e3fca30a372 (patch) | |
tree | 8aee755c2e4567952d6f8ea25df37e36e947f7ab | |
parent | 6977b41adb6adaad4a7fe00d34bd2a0eb82d46d1 (diff) |
mmcli,firmware: don't use tabs when printing human-friendly list
-rw-r--r-- | cli/mmcli-output.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/mmcli-output.c b/cli/mmcli-output.c index 4fd9db38..09722094 100644 --- a/cli/mmcli-output.c +++ b/cli/mmcli-output.c @@ -622,21 +622,21 @@ build_firmware_info_human (GPtrArray *array, gboolean selected) { g_ptr_array_add (array, g_strdup (mm_firmware_properties_get_unique_id (props))); - g_ptr_array_add (array, g_strdup_printf ("\tcurrent: %s", selected ? "yes" : "no")); + g_ptr_array_add (array, g_strdup_printf (" current: %s", selected ? "yes" : "no")); if (mm_firmware_properties_get_image_type (props) == MM_FIRMWARE_IMAGE_TYPE_GOBI) { const gchar *aux; if ((aux = mm_firmware_properties_get_gobi_pri_version (props)) != NULL) - g_ptr_array_add (array, g_strdup_printf ("\tgobi pri version: %s", aux)); + g_ptr_array_add (array, g_strdup_printf (" gobi pri version: %s", aux)); if ((aux = mm_firmware_properties_get_gobi_pri_info (props)) != NULL) - g_ptr_array_add (array, g_strdup_printf ("\tgobi pri info: %s", aux)); + g_ptr_array_add (array, g_strdup_printf (" gobi pri info: %s", aux)); if ((aux = mm_firmware_properties_get_gobi_boot_version (props)) != NULL) - g_ptr_array_add (array, g_strdup_printf ("\tgobi boot version: %s", aux)); + g_ptr_array_add (array, g_strdup_printf (" gobi boot version: %s", aux)); if ((aux = mm_firmware_properties_get_gobi_pri_unique_id (props)) != NULL) - g_ptr_array_add (array, g_strdup_printf ("\tgobi pri unique id: %s", aux)); + g_ptr_array_add (array, g_strdup_printf (" gobi pri unique id: %s", aux)); if ((aux = mm_firmware_properties_get_gobi_modem_unique_id (props)) != NULL) - g_ptr_array_add (array, g_strdup_printf ("\tgobi modem unique id: %s", aux)); + g_ptr_array_add (array, g_strdup_printf (" gobi modem unique id: %s", aux)); } } |