aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_argv.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-07-17 12:28:38 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-07-17 12:28:38 +0000
commit9557817be488da39b7f0e34162706877c0652fc3 (patch)
treea453ae5f49515fe9d3a03905845334b8b6b788eb /mdoc_argv.c
parent0e7a74d9cb86b8c50cb55a8052add204dd072cb5 (diff)
downloadmandoc-9557817be488da39b7f0e34162706877c0652fc3.tar.gz
mandoc-9557817be488da39b7f0e34162706877c0652fc3.tar.zst
mandoc-9557817be488da39b7f0e34162706877c0652fc3.zip
Lint-check (removed unused variable).
Diffstat (limited to 'mdoc_argv.c')
-rw-r--r--mdoc_argv.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/mdoc_argv.c b/mdoc_argv.c
index 9b12e219..ef82ee89 100644
--- a/mdoc_argv.c
+++ b/mdoc_argv.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_argv.c,v 1.15 2009/07/17 12:27:49 kristaps Exp $ */
+/* $Id: mdoc_argv.c,v 1.16 2009/07/17 12:28:38 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -221,7 +221,6 @@ int
mdoc_argv(struct mdoc *m, int line, int tok,
struct mdoc_arg **v, int *pos, char *buf)
{
- int i;
char *p, sv;
struct mdoc_argv tmp;
struct mdoc_arg *arg;
@@ -233,7 +232,6 @@ mdoc_argv(struct mdoc *m, int line, int tok,
/* Parse through to the first unescaped space. */
- i = *pos;
p = &buf[++(*pos)];
assert(*pos > 0);