summaryrefslogtreecommitdiff
path: root/src/mm-base-bearer.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2021-05-18 21:59:16 +0200
committerAleksander Morgado <aleksander@aleksander.es>2021-05-18 23:17:01 +0200
commit18fe7856afd40640628f73491d2cb2d0faf2d844 (patch)
tree67ac227eb6f620d3b65f78e1d91333d28928f81c /src/mm-base-bearer.c
parentd661d822f7fc2b31884eb10a586501765250ec2e (diff)
base-bearer: trivial fix printing stats reports
Diffstat (limited to 'src/mm-base-bearer.c')
-rw-r--r--src/mm-base-bearer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-base-bearer.c b/src/mm-base-bearer.c
index 6798f8d1..a8f8a262 100644
--- a/src/mm-base-bearer.c
+++ b/src/mm-base-bearer.c
@@ -456,7 +456,7 @@ bearer_update_status (MMBaseBearer *self,
mm_bearer_stats_get_duration (self->priv->stats));
if (!self->priv->reload_stats_unsupported)
g_string_append_printf (report,
- ", tx: %" G_GUINT64_FORMAT " bytes, rx :%" G_GUINT64_FORMAT " bytes",
+ ", tx: %" G_GUINT64_FORMAT " bytes, rx: %" G_GUINT64_FORMAT " bytes",
mm_bearer_stats_get_tx_bytes (self->priv->stats),
mm_bearer_stats_get_rx_bytes (self->priv->stats));
mm_obj_info (self, "%s", report->str);