diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-02-01 19:01:36 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-02-01 19:01:36 +0000 |
commit | ae963187e12199a38186593d19c2029893098a47 (patch) | |
tree | 47f81acc42fa8e68870d58321338ad6027299b08 | |
parent | cf3e06b9a1711e64c6c3184b6d9e89b6278ef980 (diff) |
double semicolon; from Daniel Matic in PR 4929
-rw-r--r-- | usr.bin/mail/quit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mail/quit.c b/usr.bin/mail/quit.c index eff860ec736..15e69aff9ae 100644 --- a/usr.bin/mail/quit.c +++ b/usr.bin/mail/quit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: quit.c,v 1.17 2003/06/03 02:56:11 millert Exp $ */ +/* $OpenBSD: quit.c,v 1.18 2006/02/01 19:01:35 otto Exp $ */ /* $NetBSD: quit.c,v 1.6 1996/12/28 07:11:07 tls Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static const char sccsid[] = "@(#)quit.c 8.2 (Berkeley) 4/28/95"; #else -static const char rcsid[] = "$OpenBSD: quit.c,v 1.17 2003/06/03 02:56:11 millert Exp $"; +static const char rcsid[] = "$OpenBSD: quit.c,v 1.18 2006/02/01 19:01:35 otto Exp $"; #endif #endif /* not lint */ @@ -332,7 +332,7 @@ cream: demail(); (void)Fclose(fbuf); spool_unlock(); - return(0);; + return(0); newmail: puts("Thou hast new mail."); |