summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2011-07-04 15:57:18 +0000
committerjsg <jsg@openbsd.org>2011-07-04 15:57:18 +0000
commit97e794f8c9f22145d66d32d0d190dca8fbd1b675 (patch)
treec09a24b384d7a11ccfbe7cfee2e00afb3f5daf4c
parentForce the sigreturn syscall to return to userspace via iretq by setting (diff)
downloadwireguard-openbsd-97e794f8c9f22145d66d32d0d190dca8fbd1b675.tar.xz
wireguard-openbsd-97e794f8c9f22145d66d32d0d190dca8fbd1b675.zip
declare a return type on a function returning void, matches upstream
-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;
}
/*