aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 685124f9..ad35d0d4 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.50 2000/03/03 14:58:26 roberto Exp roberto $ 2** $Id: lobject.h,v 1.51 2000/03/10 18:37:44 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -57,7 +57,7 @@ typedef unsigned long Instruction;
57** objects count 1, and each 32 bytes of `raw' memory count 1; we add 57** objects count 1, and each 32 bytes of `raw' memory count 1; we add
58** 2 to the total as a minimum (and also to count the overhead of malloc) 58** 2 to the total as a minimum (and also to count the overhead of malloc)
59*/ 59*/
60#define numblocks(L, o,b) ((o)+(b)/32+2) 60#define numblocks(L, o,b) ((o)+((b)>>5)+2)
61 61
62 62
63/* 63/*