Commit 4807f6a5 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Polish

parent b50bd74a
...@@ -317,6 +317,17 @@ sample_data(void) ...@@ -317,6 +317,17 @@ sample_data(void)
sample_hitrate(); sample_hitrate();
} }
static void
destroy_window(WINDOW **w)
{
AN(w);
if (*w == NULL)
return;
assert(delwin(*w) != ERR);
*w = NULL;
}
static void static void
make_windows(void) make_windows(void)
{ {
...@@ -324,26 +335,11 @@ make_windows(void) ...@@ -324,26 +335,11 @@ make_windows(void)
int y; int y;
int y_status, y_bar_t, y_points, y_bar_b, y_info; int y_status, y_bar_t, y_points, y_bar_b, y_info;
if (w_status) { destroy_window(&w_status);
delwin(w_status); destroy_window(&w_bar_t);
w_status = NULL; destroy_window(&w_points);
} destroy_window(&w_bar_b);
if (w_bar_t) { destroy_window(&w_info);
delwin(w_bar_t);
w_bar_t = NULL;
}
if (w_points) {
delwin(w_points);
w_points = NULL;
}
if (w_bar_b) {
delwin(w_bar_b);
w_bar_b = NULL;
}
if (w_info) {
delwin(w_info);
w_info = NULL;
}
Y = LINES; Y = LINES;
X = COLS; X = COLS;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment