From 1e3a4e9ff4d9963aa77dc6135f351f90d927e9e0 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Mon, 10 Nov 2025 23:47:52 +0100 Subject: Do not explicitly initialize static variables to zero This is redundant according to the C standard. --- src/op/set_global.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/op/set_global.c') diff --git a/src/op/set_global.c b/src/op/set_global.c index 9448c32..6eb3150 100644 --- a/src/op/set_global.c +++ b/src/op/set_global.c @@ -115,7 +115,7 @@ static enum nw_state get_index(struct nw_interp *const i) void nwp_op_set_global(struct nw_interp *const i) { - static const struct nw_i_sm_set_global g = {0}; + static const struct nw_i_sm_set_global g; i->sm.set_global = g; i->next = get_index; -- cgit v1.2.3