]> git.ozlabs.org Git - petitboot/blobdiff - ui/ncurses/nc-scr.c
Fix certain calls to gettext
[petitboot] / ui / ncurses / nc-scr.c
index 9ad356fa179e17ae60300540210831eca55c3a3f..a02627bae946b761b78484c40fd306022aaed63d 100644 (file)
@@ -16,9 +16,9 @@
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
+#if defined(HAVE_CONFIG_H)
 #include "config.h"
-
-#define _GNU_SOURCE
+#endif
 
 #include <assert.h>
 #include <stdarg.h>
@@ -36,8 +36,8 @@ static void nc_scr_status_clear(struct nc_scr *scr)
 
 static void nc_scr_status_draw(struct nc_scr *scr)
 {
-       mvwaddstr(scr->main_ncw, LINES - nc_scr_pos_status, 1,
-               scr->frame.status);
+       mvwaddnstr(scr->main_ncw, LINES - nc_scr_pos_status, 1,
+               scr->frame.status, COLS);
 }
 
 int nc_scr_post(struct nc_scr *scr)