aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2006-06-02 16:07:40 +0000
committerEugene Sandulenko2006-06-02 16:07:40 +0000
commit180f6c87ad5e85ee5c822c0dfeb4f1637581540e (patch)
tree0f270a2df5828ff7e00f0f08a03ca0bd82630759
parenteabca8769778a9d1fa58b320df8a31ea098305ab (diff)
downloadscummvm-rg350-180f6c87ad5e85ee5c822c0dfeb4f1637581540e.tar.gz
scummvm-rg350-180f6c87ad5e85ee5c822c0dfeb4f1637581540e.tar.bz2
scummvm-rg350-180f6c87ad5e85ee5c822c0dfeb4f1637581540e.zip
Remove slipped in debug output.
svn-id: r22840
-rw-r--r--common/hashmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hashmap.h b/common/hashmap.h
index 5e0b5b6c59..f4e115c7d2 100644
--- a/common/hashmap.h
+++ b/common/hashmap.h
@@ -93,7 +93,7 @@ struct BaseNode<const char *, Val> {
char *_key;
Val _value;
BaseNode() {assert(0);}
- BaseNode(const char *key) { printf("%s\n", key); _key = (char *)malloc(strlen(key)+1); strcpy(_key, key); }
+ BaseNode(const char *key) { _key = (char *)malloc(strlen(key)+1); strcpy(_key, key); }
};
// The table sizes ideally are primes. We use a helper function to find