diff options
author | 2014-05-28 10:34:16 +0000 | |
---|---|---|
committer | 2014-05-28 10:34:16 +0000 | |
commit | 1f4ada3fcf172c25177fc248e2f28c97a18ec343 (patch) | |
tree | 2d2e77aa9cb1200871c7c2efa4ff00ea1f48b7be | |
parent | a void function should not be returning anything. (diff) | |
download | wireguard-openbsd-1f4ada3fcf172c25177fc248e2f28c97a18ec343.tar.xz wireguard-openbsd-1f4ada3fcf172c25177fc248e2f28c97a18ec343.zip |
remove an errant semicolon.
ok gilles@
-rw-r--r-- | usr.sbin/smtpd/bounce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/bounce.c b/usr.sbin/smtpd/bounce.c index 5850f619f9f..10cf5e678f8 100644 --- a/usr.sbin/smtpd/bounce.c +++ b/usr.sbin/smtpd/bounce.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bounce.c,v 1.64 2014/04/19 17:27:40 gilles Exp $ */ +/* $OpenBSD: bounce.c,v 1.65 2014/05/28 10:34:16 daniel Exp $ */ /* * Copyright (c) 2009 Gilles Chehade <gilles@poolp.org> @@ -311,7 +311,7 @@ bounce_duration(long long int d) (void)snprintf(buf, sizeof buf, "%lld day%s", d, (d == 1)?"":"s"); } return (buf); -}; +} #define NOTICE_INTRO \ " Hi!\n\n" \ |