summaryrefslogtreecommitdiffstats
path: root/aclk
diff options
context:
space:
mode:
authorStelios Fragkakis <52996999+stelfrag@users.noreply.github.com>2023-08-18 17:39:15 +0300
committerGitHub <noreply@github.com>2023-08-18 17:39:15 +0300
commit048394ca5c86c526e647f747ee78b110bf92bd05 (patch)
treeeaebf2ff0d932c5b9001e32823eae9ea3d625aa4 /aclk
parent66c02874f1535e1270122d6befb2925dec1a92c9 (diff)
Fix compilation warning (#15839)
Fix warning re: trace_id
Diffstat (limited to 'aclk')
-rw-r--r--aclk/aclk_rx_msgs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aclk/aclk_rx_msgs.c b/aclk/aclk_rx_msgs.c
index 84ade2b346..6e4cd93fb1 100644
--- a/aclk/aclk_rx_msgs.c
+++ b/aclk/aclk_rx_msgs.c
@@ -449,7 +449,7 @@ int stop_streaming_contexts(const char *msg, size_t msg_len)
int cancel_pending_req(const char *msg, size_t msg_len)
{
- struct aclk_cancel_pending_req cmd;
+ struct aclk_cancel_pending_req cmd = {.request_id = NULL, .trace_id = NULL};
if(parse_cancel_pending_req(msg, msg_len, &cmd)) {
error_report("Error parsing CancelPendingReq");
return 1;