diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-10-17 19:45:00 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-10-17 19:45:00 -0200 |
commit | 25010f8e0908c74475333396730c7d0653e3dcb8 (patch) | |
tree | 1c58b0155a495db1aa7666275917be02a70f20f7 /table.c | |
parent | 424db1db0cefbcb14d23961e6613d0f8fbb3dae4 (diff) | |
download | lua-25010f8e0908c74475333396730c7d0653e3dcb8.tar.gz lua-25010f8e0908c74475333396730c7d0653e3dcb8.tar.bz2 lua-25010f8e0908c74475333396730c7d0653e3dcb8.zip |
remove of 'printf' for debuging.
Diffstat (limited to 'table.c')
-rw-r--r-- | table.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -3,7 +3,7 @@ | |||
3 | ** Module to control static tables | 3 | ** Module to control static tables |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_table="$Id: table.c,v 2.3 1994/08/03 14:15:46 celes Exp $"; | 6 | char *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 | ||
219 | printf("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 | } |