Fix missing initializer warning.

This commit is contained in:
Brian Taylor 2021-12-07 11:30:46 -08:00 committed by Holger Vogt
parent 11117912f9
commit 8e75cad453
1 changed files with 1 additions and 1 deletions

View File

@ -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;