summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--byterun/globroots.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/byterun/globroots.c b/byterun/globroots.c
index 2e72567fc..396b36654 100644
--- a/byterun/globroots.c
+++ b/byterun/globroots.c
@@ -45,7 +45,6 @@ static int random_level(void)
so consume most significant bits first */
while ((r & 0xC0000000U) == 0xC0000000U) { level++; r = r << 2; }
Assert(level <= MAX_LEVEL);
- printf("%d\n", level);
return level;
}