summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2018-10-06 14:52:18 +0200
committerAleksander Morgado <aleksander@aleksander.es>2018-10-06 14:52:18 +0200
commit24454b2775cfcaa77429cf5d3a72ac82bd92084f (patch)
tree58ae647a4bb011c456348e271c4bf8fa84a1fae7
parentf7cb84788e6b07e2c937dcf4e0512233ca48f6f2 (diff)
downloadModemManager-24454b2775cfcaa77429cf5d3a72ac82bd92084f.tar.gz
cli,bearer: normalize n/a reporting
Use always small letters.
-rw-r--r--cli/mmcli-bearer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/mmcli-bearer.c b/cli/mmcli-bearer.c
index cd9ecca03..8b053136a 100644
--- a/cli/mmcli-bearer.c
+++ b/cli/mmcli-bearer.c
@@ -265,13 +265,13 @@ print_bearer_info (MMBearer *bearer)
if (val > 0)
g_print (" | Bytes received: '%" G_GUINT64_FORMAT "'\n", val);
else
- g_print (" | Bytes received: 'N/A'\n");
+ g_print (" | Bytes received: 'n/a'\n");
val = mm_bearer_stats_get_tx_bytes (stats);
if (val > 0)
g_print (" | Bytes transmitted: '%" G_GUINT64_FORMAT "'\n", val);
else
- g_print (" | Bytes transmitted: 'N/A'\n");
+ g_print (" | Bytes transmitted: 'n/a'\n");
}
g_clear_object (&stats);