From 24454b2775cfcaa77429cf5d3a72ac82bd92084f Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Sat, 6 Oct 2018 14:52:18 +0200 Subject: [PATCH] cli,bearer: normalize n/a reporting Use always small letters. --- cli/mmcli-bearer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/mmcli-bearer.c b/cli/mmcli-bearer.c index cd9ecca0..8b053136 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);