Skip to content

Commit

Permalink
SWPTP-1000: fix [-Werror=maybe-uninitialize] regression
Browse files Browse the repository at this point in the history
  • Loading branch information
abower-amd committed Jan 30, 2025
1 parent 33db628 commit 387d7b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sfptpd_metrics.c
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ static int sfptpd_metrics_send(struct query_state *q, bool peek)
struct http *h = &q->http;
size_t buf_sz = 0;
char *buf = NULL;
int count;
int count = 0;
FILE *stream;
int rc = 0;
int m;
Expand Down

0 comments on commit 387d7b3

Please sign in to comment.