From 8e75cad4538429d8a4930a5736d9132455622d65 Mon Sep 17 00:00:00 2001 From: Brian Taylor Date: Tue, 7 Dec 2021 11:30:46 -0800 Subject: [PATCH] Fix missing initializer warning. --- src/frontend/plotting/plotting.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/plotting/plotting.c b/src/frontend/plotting/plotting.c index 51fa9d0a2..430b2c978 100644 --- a/src/frontend/plotting/plotting.c +++ b/src/frontend/plotting/plotting.c @@ -7,7 +7,7 @@ struct plot constantplot = { "Constant values", Spice_Build_Date, "constants", "const", NULL, NULL, NULL, NULL, NULL, NULL, NULL, - TRUE, FALSE, 0 + TRUE, FALSE, 0, 0, 0 }; struct plot *plot_cur = &constantplot;