summaryrefslogtreecommitdiffstats
path: root/src/include/curses.h
diff options
context:
space:
mode:
authorDan Lynch2006-06-28 13:53:41 +0200
committerDan Lynch2006-06-28 13:53:41 +0200
commitd8b51332c6e35b60317b2fd41e1b91227872f493 (patch)
tree1e0b739c3398a82a925827091a74b0893ad511fa /src/include/curses.h
parent- modified length of password string to match visible field length (diff)
downloadipxe-d8b51332c6e35b60317b2fd41e1b91227872f493.tar.gz
ipxe-d8b51332c6e35b60317b2fd41e1b91227872f493.tar.xz
ipxe-d8b51332c6e35b60317b2fd41e1b91227872f493.zip
typo in macro fixed
Diffstat (limited to 'src/include/curses.h')
-rw-r--r--src/include/curses.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/curses.h b/src/include/curses.h
index 13874ba9..27edb376 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