Fix a dangerous macro.

Change-Id: Idb5530ceb03c415e4ec002f8d2fbbec837b35636
main
Yusuke Nojima 2011-09-20 14:03:42 +09:00
parent a35ea4cba8
commit 6309593762
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ static void dumpWord(const unsigned short* word, const int length) {
#endif // FLAG_DBG
#ifndef U_SHORT_MAX
#define U_SHORT_MAX 1 << 16
#define U_SHORT_MAX 65535 // ((1 << 16) - 1)
#endif
#ifndef S_INT_MAX
#define S_INT_MAX 2147483647 // ((1 << 31) - 1)