aboutsummaryrefslogtreecommitdiff
path: root/table.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-10-17 19:45:00 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-10-17 19:45:00 -0200
commit25010f8e0908c74475333396730c7d0653e3dcb8 (patch)
tree1c58b0155a495db1aa7666275917be02a70f20f7 /table.c
parent424db1db0cefbcb14d23961e6613d0f8fbb3dae4 (diff)
downloadlua-25010f8e0908c74475333396730c7d0653e3dcb8.tar.gz
lua-25010f8e0908c74475333396730c7d0653e3dcb8.tar.bz2
lua-25010f8e0908c74475333396730c7d0653e3dcb8.zip
remove of 'printf' for debuging.
Diffstat (limited to 'table.c')
-rw-r--r--table.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/table.c b/table.c
index 875a6e20..b9e3449c 100644
--- a/table.c
+++ b/table.c
@@ -3,7 +3,7 @@
3** Module to control static tables 3** Module to control static tables
4*/ 4*/
5 5
6char *rcs_table="$Id: table.c,v 2.3 1994/08/03 14:15:46 celes Exp $"; 6char *rcs_table="$Id: table.c,v 2.4 1994/10/17 19:03:23 celes Exp roberto $";
7 7
8#include <stdlib.h> 8#include <stdlib.h>
9#include <string.h> 9#include <string.h>
@@ -216,8 +216,6 @@ void lua_pack (void)
216 lua_strcollector(); 216 lua_strcollector();
217 lua_hashcollector(); 217 lua_hashcollector();
218 218
219printf("lua_pack: lua_block=%d lua_recovered=%d %%=%.2f\n",lua_block,lua_recovered,100.0*lua_recovered/lua_block);
220
221 lua_nentity = 0; /* reset counter */ 219 lua_nentity = 0; /* reset counter */
222 lua_block=2*lua_block-3*lua_recovered/2; /* adapt block size */ 220 lua_block=2*lua_block-3*lua_recovered/2; /* adapt block size */
223} 221}