aboutsummaryrefslogtreecommitdiff
path: root/common/hashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/hashmap.h')
-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