Commit 8a7f1b7bf949b67ce69908af8d082b8c73825ee6

Thomas de Grivel 2023-07-16T11:31:06

remove printf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/libc3/buf_parse.c b/libc3/buf_parse.c
index 77f2c83..e108627 100644
--- a/libc3/buf_parse.c
+++ b/libc3/buf_parse.c
@@ -78,10 +78,6 @@ sw buf_parse_array_data (s_buf *buf, s_array *dest)
   address = calloc(tmp.dimension, sizeof(sw));
   parse = tag_type_to_buf_parse(tmp.type);
   tmp.data = calloc(tmp.dimensions[0].count, tmp.dimensions[0].item_size);
-  printf("tmp.data: %lu * %lu = %lu\n",
-         tmp.dimensions[0].count,
-         tmp.dimensions[0].item_size,
-         tmp.dimensions[0].count * tmp.dimensions[0].item_size);
   data = tmp.data;
   if ((r = buf_parse_array_data_rec(buf, &tmp, 0, address,
                                     parse, &data)) <= 0) {