From a75a305c77acd6800b81204f387f7a437a62fe6b Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Fri, 25 Feb 2011 18:31:22 -0800 Subject: Implemented upb_stringsink, upb_msgtotext, and exposed the latter to Lua. --- src/upb_table.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/upb_table.h') 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; -- cgit v1.2.3