From c48917bc6c96adfb41d847c6a2e91fecb512109a Mon Sep 17 00:00:00 2001
From: "roman.khlopkov" <roman.khlopkov@demlabs.net>
Date: Fri, 28 Jun 2024 15:03:47 +0300
Subject: [PATCH] [*] Build fix

---
 modules/type/dag/dap_chain_cs_dag.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/type/dag/dap_chain_cs_dag.c b/modules/type/dag/dap_chain_cs_dag.c
index d392889bb7..84dc44b8c4 100644
--- a/modules/type/dag/dap_chain_cs_dag.c
+++ b/modules/type/dag/dap_chain_cs_dag.c
@@ -1599,12 +1599,12 @@ static int s_cli_dag(int argc, char ** argv, void **a_str_reply)
                     break;
 
                 }
-                if ( l_event ){                    
+                if ( l_event ) {
+                    char buf[DAP_TIME_STR_SIZE];
                     json_object_object_add(json_obj_event,"Event hash", json_object_new_string(l_event_hash_str));
 
                     // Round info
                     if ((l_from_events_str && strcmp(l_from_events_str,"round.new") == 0) && l_round_item) {
-                        char buf[DAP_TIME_STR_SIZE];
                         json_object_object_add(json_obj_event,"Round info", json_object_new_string(" "));
                         json_object_object_add(json_obj_event,"tsigns reject", json_object_new_uint64(l_round_item->round_info.reject_count));
                         json_object_object_add(json_obj_event,"ts_update", json_object_new_string(buf));
-- 
GitLab