* we need this if we don't have ncurses.
authorWilfried Göesgens <willi@citadel.org>
Mon, 26 Feb 2007 22:54:56 +0000 (22:54 +0000)
committerWilfried Göesgens <willi@citadel.org>
Mon, 26 Feb 2007 22:54:56 +0000 (22:54 +0000)
citadel/screen.c

index 7a5bdcced0593bcd32d4d2e99d7d7a57e35ded99..398f945ce8ce570cb9327f9420cf9c09a7828e5f 100644 (file)
@@ -33,8 +33,8 @@ static WINDOW *mainwindow = NULL;
 static WINDOW *statuswindow = NULL;
 
 char rc_screen;
-char arg_screen;
 #endif
+char arg_screen;
 
 extern int screenheight;
 extern int screenwidth;
@@ -109,6 +109,8 @@ void wait_indicator(int state) {
                wrefresh(mainwindow);   /* this puts the cursor back */
        }
 }
+#else
+void wait_indicator(int state) {}
 #endif