From: schwarze Date: Sun, 24 Aug 2014 23:44:50 +0000 (+0000) Subject: Oops. Garbage collect unused variable. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=e72bdc81de2ff552ba3f8f43ac2e9123aecf777f;p=openbsd Oops. Garbage collect unused variable. --- diff --git a/usr.bin/mandoc/term_ps.c b/usr.bin/mandoc/term_ps.c index 8504036a3c3..cd5d326e275 100644 --- a/usr.bin/mandoc/term_ps.c +++ b/usr.bin/mandoc/term_ps.c @@ -1,4 +1,4 @@ -/* $OpenBSD: term_ps.c,v 1.29 2014/08/24 23:40:41 schwarze Exp $ */ +/* $OpenBSD: term_ps.c,v 1.30 2014/08/24 23:44:50 schwarze Exp $ */ /* * Copyright (c) 2010, 2011 Kristaps Dzonsons * Copyright (c) 2014 Ingo Schwarze @@ -1066,7 +1066,7 @@ ps_fclose(struct termp *p) static void ps_letter(struct termp *p, int arg) { - char cc, c; + char c; c = arg >= 128 || arg <= 0 ? '?' : arg;