aboutsummaryrefslogtreecommitdiff
path: root/Source/DOH/Doh/hash.c
diff options
context:
space:
mode:
authorDave Beazley <dave-swig@dabeaz.com>2000-04-10 15:24:43 +0000
committerDave Beazley <dave-swig@dabeaz.com>2000-04-10 15:24:43 +0000
commit24ea965c2e21c2385c092f8a624f4b678b6a6b8c (patch)
tree06bf6ff9caebb4f3ad90ea6ef73d0fb9fa6fd288 /Source/DOH/Doh/hash.c
parent79afb1640b5fa4e3b288a67db0fd94f824f6c829 (diff)
downloadswig-24ea965c2e21c2385c092f8a624f4b678b6a6b8c.tar.gz
Cleanup
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@398 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Source/DOH/Doh/hash.c')
-rw-r--r--Source/DOH/Doh/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/DOH/Doh/hash.c b/Source/DOH/Doh/hash.c
index 582419285..330402481 100644
--- a/Source/DOH/Doh/hash.c
+++ b/Source/DOH/Doh/hash.c
@@ -53,7 +53,7 @@ static DOH *find_key(char *c) {
if (d < 0) r = r->left;
else r = r->right;
}
- fprintf(stderr,"Interning '%s'\n", c);
+ /* fprintf(stderr,"Interning '%s'\n", c);*/
r = (KeyValue *) DohMalloc(sizeof(KeyValue));
r->cstr = (char *) DohMalloc(strlen(c)+1);
strcpy(r->cstr,c);