From 6fa983df3c19f49b7a3e009015aaa204745d22c3 Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Tue, 16 Aug 2016 23:58:33 +0200 Subject: [PATCH] Removed new line from srslte_vec_sprint_hex --- srslte/lib/utils/vector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srslte/lib/utils/vector.c b/srslte/lib/utils/vector.c index 1cd91c7a5..77c674ba0 100644 --- a/srslte/lib/utils/vector.c +++ b/srslte/lib/utils/vector.c @@ -443,7 +443,7 @@ void srslte_vec_sprint_hex(char *str, uint8_t *x, uint32_t len) { byte = (uint8_t) srslte_bit_pack(&x, len%8)<<(8-(len%8)); n+=sprintf(&str[n], "%02x ", byte); } - n+=sprintf(&str[n], "];\n"); + n+=sprintf(&str[n], "]"); } void srslte_vec_save_file(char *filename, void *buffer, uint32_t len) {