From d16d8f362abe9cc709b67bb556810e1bbb618256 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Fri, 10 Mar 2023 02:27:43 +0100 Subject: [PATCH] sys/suit: drop superfluous ')' in output --- sys/suit/handlers_global.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/suit/handlers_global.c b/sys/suit/handlers_global.c index 2e906e67e7..9a73809096 100644 --- a/sys/suit/handlers_global.c +++ b/sys/suit/handlers_global.c @@ -44,7 +44,7 @@ static int _version_handler(suit_manifest_t *manifest, int key, if (nanocbor_get_int32(it, &version) >= 0) { if (version == SUIT_VERSION) { manifest->validated |= SUIT_VALIDATED_VERSION; - LOG_INFO("suit: validated manifest version\n)"); + LOG_INFO("suit: validated manifest version\n"); return SUIT_OK; } } @@ -71,11 +71,11 @@ static int _seq_no_handler(suit_manifest_t *manifest, int key, seq_nr, stored_seq_no); if (seq_nr <= stored_seq_no) { - LOG_ERROR("seq_nr <= running image\n)"); + LOG_ERROR("seq_nr <= running image\n"); return SUIT_ERR_SEQUENCE_NUMBER; } - LOG_INFO("suit: validated sequence number\n)"); + LOG_INFO("suit: validated sequence number\n"); manifest->seq_number = seq_nr; manifest->validated |= SUIT_VALIDATED_SEQ_NR; return SUIT_OK;