* cli-out.c (cli_out_new): Initialize new structure member

"suppress_output".
This commit is contained in:
Keith Seitz
2001-06-21 22:54:06 +00:00
parent 1cac90122e
commit 8d2139f30c
2 changed files with 6 additions and 0 deletions

View File

@ -364,6 +364,7 @@ cli_out_new (struct ui_file *stream)
struct ui_out_data *data = XMALLOC (struct ui_out_data);
data->stream = stream;
data->suppress_output = 0;
return ui_out_new (&cli_ui_out_impl, data, flags);
}