mirror of
https://github.com/ipxe/ipxe
synced 2026-02-28 03:11:18 +03:00
typo in macro fixed
This commit is contained in:
@@ -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...
|
// OK, so maybe a few I did with macros...
|
||||||
#define mvprintw( y, x, fmt, ... ) \
|
#define mvprintw( y, x, fmt, ... ) \
|
||||||
( wmove(stdscr,(y),(x)) == OK \
|
( 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 ) {
|
static inline int mvvline ( int y, int x, chtype ch, int n ) {
|
||||||
return ( wmove ( stdscr, y, x ) == OK
|
return ( wmove ( stdscr, y, x ) == OK
|
||||||
|
|||||||
Reference in New Issue
Block a user