diff options
Diffstat (limited to 'src/ui/window.c')
-rw-r--r-- | src/ui/window.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ui/window.c b/src/ui/window.c index e2e03340..7c6f9266 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -35,8 +35,6 @@ #include "config/theme.h" #include "ui/window.h" -#define CONS_WIN_TITLE "_cons" - ProfWin* win_create(const char * const title, int cols, win_type_t type) { @@ -59,8 +57,6 @@ win_free(ProfWin* window) { delwin(window->win); free(window->from); - window->from = NULL; - window->win = NULL; free(window); window = NULL; } |