소스 검색

Moved include of gettext.h to the outside of #ifdef ENABLE_NLS since
gettext.h has it inside itself.

Tatsuhiro Tsujikawa 15 년 전
부모
커밋
f4e008f886
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/common.h

+ 1 - 1
src/common.h

@@ -59,8 +59,8 @@ typedef _off_t off_t;
 #endif
 #endif // __MINGW32__
 
+#include "gettext.h"
 #ifdef ENABLE_NLS
-# include "gettext.h"
 # define _(String) gettext(String)
 #else // ENABLE_NLS
 # define _(String) String