summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorNiall O'Higgins <niallo@cvs.openbsd.org>2006-06-11 22:21:24 +0000
committerNiall O'Higgins <niallo@cvs.openbsd.org>2006-06-11 22:21:24 +0000
commit39bf14fcf2ce6643c512619ea60cb53799e44268 (patch)
treee5f62bf274011fe6c5c898e43b54378918c17105 /usr.bin
parent4347ab3ed046db058e0bfc626fbd75b500b2f558 (diff)
- zap unused variable
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/rcs/rcs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/rcs/rcs.c b/usr.bin/rcs/rcs.c
index eec3386b3d4..ec283c05ee0 100644
--- a/usr.bin/rcs/rcs.c
+++ b/usr.bin/rcs/rcs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcs.c,v 1.18 2006/06/09 22:09:33 niallo Exp $ */
+/* $OpenBSD: rcs.c,v 1.19 2006/06/11 22:21:23 niallo Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -2572,7 +2572,7 @@ rcs_expand_keywords(char *rcsfile, struct rcs_delta *rdp, BUF *bp, int mode)
char expbuf[256], buf[256];
struct tm tb;
char *fmt;
- size_t len, newlen, tbuflen;
+ size_t len, tbuflen;
kwtype = 0;
kwstr = NULL;
@@ -2586,7 +2586,6 @@ rcs_expand_keywords(char *rcsfile, struct rcs_delta *rdp, BUF *bp, int mode)
rcs_set_tz(timezone_flag, rdp, &tb);
len = rcs_buf_len(bp);
- newlen = 0;
c = rcs_buf_get(bp);
found = 0;