소스 검색

typo in macro fixed

tags/v0.9.3
Dan Lynch 18 년 전
부모
커밋
d8b51332c6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/include/curses.h

+ 1
- 1
src/include/curses.h 파일 보기

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

Loading…
취소
저장