Commit c840b74d95cd93f7a3c1bd83e97dc3bf952e489b

Thomas de Grivel 2023-02-04T04:29:26

remove init {0}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/libc3/tag.c b/libc3/tag.c
index 1fcc848..3487c75 100644
--- a/libc3/tag.c
+++ b/libc3/tag.c
@@ -19,8 +19,8 @@
 #include "c3.h"
 #include "../libffi/ffi.h"
 
-s_tag g_tag_first = {0};
-s_tag g_tag_last = {0};
+s_tag g_tag_first;
+s_tag g_tag_last;
 
 s_tag * tag_1 (s_tag *tag, const s8 *p)
 {