From da95537e345b806b2ef6e811c6dd7ecfb94bad86 Mon Sep 17 00:00:00 2001 From: matejcik Date: Tue, 9 Apr 2019 14:26:55 +0200 Subject: [PATCH] omni: add space before symbol --- firmware/layout2.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/firmware/layout2.c b/firmware/layout2.c index 197b4edac3..61510249e8 100644 --- a/firmware/layout2.c +++ b/firmware/layout2.c @@ -360,19 +360,19 @@ void layoutConfirmOmni(const uint8_t *data, uint32_t size) { if (tx_type == 0x00000000 && size == 20) { // OMNI simple send desc = _("Simple send of "); REVERSE32(*(const uint32_t *)(data + 8), currency); - const char *suffix = "UNKN"; + const char *suffix = " UNKN"; switch (currency) { case 1: - suffix = "OMNI"; + suffix = " OMNI"; break; case 2: - suffix = "tOMNI"; + suffix = " tOMNI"; break; case 3: - suffix = "MAID"; + suffix = " MAID"; break; case 31: - suffix = "USDT"; + suffix = " USDT"; break; } uint64_t amount_be, amount;