From c2b05ca11ee0aafe076cbc66418b73c82af3e65b Mon Sep 17 00:00:00 2001 From: Dominik Loidolt <dominik.loidolt@univie.ac.at> Date: Mon, 19 Feb 2024 12:53:21 +0100 Subject: [PATCH] Replace printf() with debug_print() --- lib/icu_compress/cmp_icu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/icu_compress/cmp_icu.c b/lib/icu_compress/cmp_icu.c index a51b165..1423c2c 100644 --- a/lib/icu_compress/cmp_icu.c +++ b/lib/icu_compress/cmp_icu.c @@ -2132,7 +2132,7 @@ static int compress_data_internal(const struct cmp_cfg *cfg, int stream_len) return 0; if (stream_len & 0x7) { - printf("Error: The stream_len parameter must be a multiple of 8.\n"); + debug_print("Error: The stream_len parameter must be a multiple of 8.\n"); return -1; } -- GitLab