git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@398 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-04-10 15:24:43 +00:00
commit 38aed58bfc

View file

@ -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);