From: Dan Lynch Date: Wed, 28 Jun 2006 11:53:41 +0000 (+0000) Subject: typo in macro fixed X-Git-Tag: v0.9.3~1219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8b51332c6e35b60317b2fd41e1b91227872f493;p=thirdparty%2Fipxe.git typo in macro fixed --- diff --git a/src/include/curses.h b/src/include/curses.h index 13874ba9c..27edb3760 100644 --- a/src/include/curses.h +++ b/src/include/curses.h @@ -682,7 +682,7 @@ static inline int mvhline ( int y, int x, chtype ch, int n ) { // OK, so maybe a few I did with macros... #define mvprintw( y, x, fmt, ... ) \ ( wmove(stdscr,(y),(x)) == OK \ - ? wprintw(stdscr,(fmt), ## __VA_ARGS__ : ERR ) + ? wprintw( stdscr,(fmt), ## __VA_ARGS__ ) : ERR ) static inline int mvvline ( int y, int x, chtype ch, int n ) { return ( wmove ( stdscr, y, x ) == OK