david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

typo in macro fixed

This commit is contained in:
Dan Lynch 2006-06-28 11:53:41 +00:00
parent ba2bfd54ed
commit d8b51332c6
1 changed files with 1 additions and 1 deletions

View File

@ -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