libyang MAINTENANCE variable initiation to silence compiler's warnings
diff --git a/src/schema_compile_node.c b/src/schema_compile_node.c
index 07ce08d..e3862c4 100644
--- a/src/schema_compile_node.c
+++ b/src/schema_compile_node.c
@@ -1155,8 +1155,8 @@
 {
     LY_ERR ret = LY_SUCCESS;
     LY_ARRAY_COUNT_TYPE u, v, match = 0;
-    int32_t highest_value = INT32_MIN, cur_val;
-    uint32_t highest_position = 0, cur_pos;
+    int32_t highest_value = INT32_MIN, cur_val = INT32_MIN;
+    uint32_t highest_position = 0, cur_pos = 0;
     struct lysc_type_bitenum_item *e, storage;
     ly_bool enabled;