summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorNiall O'Higgins <niallo@cvs.openbsd.org>2006-05-29 02:58:17 +0000
committerNiall O'Higgins <niallo@cvs.openbsd.org>2006-05-29 02:58:17 +0000
commitadb13040e7cce0739a871f2bc4fa441ea2bb0375 (patch)
tree9507d8b411992af151ce153856fe40c4d9f9864a /usr.bin
parent8968602bc21c8c5416204c4d14c4d8da126803d6 (diff)
- zap unrequired casts for rcs_buf_release().
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/rcs/ci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c
index c2103f85b6c..9705296be35 100644
--- a/usr.bin/rcs/ci.c
+++ b/usr.bin/rcs/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.175 2006/05/27 05:49:14 ray Exp $ */
+/* $OpenBSD: ci.c,v 1.176 2006/05/29 02:58:16 niallo Exp $ */
/*
* Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org>
* All rights reserved.
@@ -357,7 +357,7 @@ checkin_diff_file(struct checkin_params *pb)
goto out;
rcs_buf_putc(b3, '\0');
- deltatext = (char *)rcs_buf_release(b3);
+ deltatext = rcs_buf_release(b3);
b3 = NULL;
out:
@@ -616,7 +616,7 @@ checkin_init(struct checkin_params *pb)
goto fail;
rcs_buf_putc(bp, '\0');
- filec = (char *)rcs_buf_release(bp);
+ filec = rcs_buf_release(bp);
/* Get default values from working copy if -k specified */
if (pb->flags & CI_KEYWORDSCAN)