diff options
| author | Lua Team <team@lua.org> | 2005-11-18 12:00:00 +0000 |
|---|---|---|
| committer | repogen <> | 2005-11-18 12:00:00 +0000 |
| commit | b3196343ba1a5dfe10e68eb9c61dc0ad5bb961a8 (patch) | |
| tree | d3efede68270d3986c0f78101e55d17577a62666 /src/lobject.h | |
| parent | bd80c4ee9b6d9464cf9f3ff4ee41890d8b3ca9e6 (diff) | |
| download | lua-github-b3196343ba1a5dfe10e68eb9c61dc0ad5bb961a8.tar.gz | |
Lua 5.1-beta5.1-beta
Diffstat (limited to 'src/lobject.h')
| -rw-r--r-- | src/lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lobject.h b/src/lobject.h index 1709fa3c..1416e360 100644 --- a/src/lobject.h +++ b/src/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 2.17 2005/06/13 14:19:00 roberto Exp $ +** $Id: lobject.h,v 2.18 2005/10/24 17:37:33 roberto Exp $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -353,7 +353,7 @@ typedef struct Table { ** `module' operation for hashing (size is always a power of 2) */ #define lmod(s,size) \ - check_exp((size&(size-1))==0, (cast(int, (s) & ((size)-1)))) + (check_exp((size&(size-1))==0, (cast(int, (s) & ((size)-1))))) #define twoto(x) (1<<(x)) |
