Browse Source

Fix missing initializer warning.

pre-master-46
Brian Taylor 4 years ago
committed by Holger Vogt
parent
commit
8e75cad453
  1. 2
      src/frontend/plotting/plotting.c

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

Loading…
Cancel
Save