summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-04-06 09:48:35 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-04-06 09:48:35 +0000
commit367d3a4c925c147a61456efa0c90fed9f33cbb9b (patch)
treeb64476506e41121486d0660c7c57b04b321fe1cf
parent3e00c64255fd9ee7a4ce2d6d970521cb455789bb (diff)
downloadmandoc-367d3a4c925c147a61456efa0c90fed9f33cbb9b.tar.gz
mandoc-367d3a4c925c147a61456efa0c90fed9f33cbb9b.tar.zst
mandoc-367d3a4c925c147a61456efa0c90fed9f33cbb9b.zip
Removed forgotten printfs.
-rw-r--r--mdoc_action.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/mdoc_action.c b/mdoc_action.c
index 9f8035b3..26b1940b 100644
--- a/mdoc_action.c
+++ b/mdoc_action.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_action.c,v 1.6 2009/04/06 08:53:12 kristaps Exp $ */
+/* $Id: mdoc_action.c,v 1.7 2009/04/06 09:48:35 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
@@ -344,19 +344,13 @@ post_nm(POST_ARGS)
if (m->meta.name)
return(1);
- printf("bar\n");
-
buf[0] = 0;
if ( ! concat(m, m->last->child, buf, sizeof(buf)))
return(0);
- printf("foo\n");
-
if (NULL == (m->meta.name = strdup(buf)))
return(verr(m, EMALLOC));
- printf("baz\n");
-
return(1);
}