summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cvs
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2011-07-04 15:57:19 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2011-07-04 15:57:19 +0000
commit3ac87f414c3ec900311343d0fe4d2de63b98c708 (patch)
tree4cd351c49600c64f8ae7ed386ca6c251d3f6529f /gnu/usr.bin/cvs
parent6f3b6d3594db252ac8a61c14b28a0748c186e47e (diff)
declare a return type on a function returning void, matches upstream
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r--gnu/usr.bin/cvs/src/wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/src/wrapper.c b/gnu/usr.bin/cvs/src/wrapper.c
index 7dbaa5538a4..91fdbafbbd0 100644
--- a/gnu/usr.bin/cvs/src/wrapper.c
+++ b/gnu/usr.bin/cvs/src/wrapper.c
@@ -249,6 +249,7 @@ wrap_unparse_rcs_options (line, first_call_p)
* Remove fmt str specifier other than %% or %s. And allow
* only max_s %s specifiers
*/
+void
wrap_clean_fmt_str(char *fmt, int max_s)
{
while (*fmt) {
@@ -266,7 +267,6 @@ wrap_clean_fmt_str(char *fmt, int max_s)
}
fmt++;
}
- return;
}
/*