瀏覽代碼

typo in macro fixed

tags/v0.9.3
Dan Lynch 19 年之前
父節點
當前提交
d8b51332c6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/include/curses.h

+ 1
- 1
src/include/curses.h 查看文件

682
 // OK, so maybe a few I did with macros...
682
 // OK, so maybe a few I did with macros...
683
 #define mvprintw( y, x, fmt, ... ) \
683
 #define mvprintw( y, x, fmt, ... ) \
684
 	( wmove(stdscr,(y),(x)) == OK \
684
 	( wmove(stdscr,(y),(x)) == OK \
685
-	  ? wprintw(stdscr,(fmt), ## __VA_ARGS__ : ERR )
685
+	  ? wprintw( stdscr,(fmt), ## __VA_ARGS__ ) : ERR )
686
 
686
 
687
 static inline int mvvline ( int y, int x, chtype ch, int n ) {
687
 static inline int mvvline ( int y, int x, chtype ch, int n ) {
688
 	return ( wmove ( stdscr, y, x ) == OK
688
 	return ( wmove ( stdscr, y, x ) == OK

Loading…
取消
儲存