summaryrefslogtreecommitdiffstatshomepage
path: root/main.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 18:43:59 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 18:43:59 +0000
commitf54bc255ec6ce8e5cd01d9299f00e1a96baa51a4 (patch)
treecd78d9ee96d3d3ae3c066873b6ce146b5e2b7657 /main.c
parent0efd1116dcbababfda14c90bf1392d5c56e54568 (diff)
downloadmandoc-f54bc255ec6ce8e5cd01d9299f00e1a96baa51a4.tar.gz
mandoc-f54bc255ec6ce8e5cd01d9299f00e1a96baa51a4.tar.zst
mandoc-f54bc255ec6ce8e5cd01d9299f00e1a96baa51a4.zip
Segfault fix and letting warnings slip through for now.
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 1175e2fa..f9f2d51c 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.71 2010/05/15 18:35:14 kristaps Exp $ */
+/* $Id: main.c,v 1.72 2010/05/15 18:43:59 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -785,7 +785,7 @@ mmsg(enum mandocerr t, void *arg, int ln, int col, const char *msg)
cp = (struct curparse *)arg;
- fprintf(stderr, "%s:%d:%d: %s\n", cp->file, ln, col + 1, msg);
+ /*fprintf(stderr, "%s:%d:%d: %s\n", cp->file, ln, col + 1, msg);*/
return(1);
}