From 201019ce2d9628deb2481559b6a6d5c87cec684e Mon Sep 17 00:00:00 2001 From: "zik.saleeba" Date: Tue, 10 Mar 2009 23:02:06 +0000 Subject: [PATCH] Removed debug which was accidentally checked in git-svn-id: http://picoc.googlecode.com/svn/trunk@189 21eae674-98b7-11dd-bd71-f92a316d2d60 --- table.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/table.c b/table.c index df7bffb..61dbfff 100644 --- a/table.c +++ b/table.c @@ -114,9 +114,9 @@ char *TableSetIdentifier(struct Table *Tbl, const char *Ident, int IdentLen) else { /* add it to the table - we economise by not allocating the whole structure here */ struct TableEntry *NewEntry = HeapAlloc(sizeof(struct TableEntry *) + IdentLen + 1); - printf("allocated 0x%lx:%d for '", (unsigned long)NewEntry, sizeof(struct TableEntry *) + IdentLen + 1); - fwrite(Ident, 1, IdentLen, stdout); - printf("'\n"); + //printf("allocated 0x%lx:%d for '", (unsigned long)NewEntry, sizeof(struct TableEntry *) + IdentLen + 1); + //fwrite(Ident, 1, IdentLen, stdout); + //printf("'\n"); if (NewEntry == NULL) ProgramFail(NULL, "out of memory");