summaryrefslogtreecommitdiff
path: root/src/upb_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/upb_table.h')
-rw-r--r--src/upb_table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/upb_table.h b/src/upb_table.h
index c658a6e..a799653 100644
--- a/src/upb_table.h
+++ b/src/upb_table.h
@@ -133,7 +133,7 @@ INLINE void *_upb_inttable_fastlookup(upb_inttable *t, uint32_t key,
while (1) {
//DEBUGPRINTF("%d, %d, %d\n", e->val.has_entry, e->hdr.key, key);
if (e->hdr.key == key) {
- DEBUGPRINTF("returning val from hash part\n");
+ //DEBUGPRINTF("returning val from hash part\n");
return &e->val;
}
if ((bucket = e->hdr.next) == UPB_END_OF_CHAIN) return NULL;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback