summaryrefslogtreecommitdiff
path: root/src/upb_handlers.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/upb_handlers.c')
-rw-r--r--src/upb_handlers.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/upb_handlers.c b/src/upb_handlers.c
index 5f97649..a9dec0c 100644
--- a/src/upb_handlers.c
+++ b/src/upb_handlers.c
@@ -97,7 +97,6 @@ static upb_mhandlers *upb_regmsg_dfs(upb_handlers *h, upb_msgdef *m,
void *closure, upb_strtable *mtab) {
upb_mhandlers *mh = upb_handlers_newmsg(h);
upb_mtab_ent e = {{m->base.fqname, 0}, mh};
- printf("Inserting: " UPB_STRFMT "\n", UPB_STRARG(m->base.fqname));
upb_strtable_insert(mtab, &e.e);
if (msgreg_cb) msgreg_cb(closure, mh, m);
upb_msg_iter i;
@@ -108,7 +107,6 @@ static upb_mhandlers *upb_regmsg_dfs(upb_handlers *h, upb_msgdef *m,
upb_mhandlers *sub_mh;
upb_mtab_ent *subm_ent;
// The table lookup is necessary to break the DFS for type cycles.
- printf("Testing: " UPB_STRFMT "\n", UPB_STRARG(f->def->fqname));
if ((subm_ent = upb_strtable_lookup(mtab, f->def->fqname)) != NULL) {
sub_mh = subm_ent->mh;
} else {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback