diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-03-27 03:40:45 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-03-27 03:40:45 +0000 |
commit | ff5ed9bf6291bcdcb17187e5623b03036250ff9e (patch) | |
tree | 5014ee1f6e7880714b7899988ad7af9b92684fcf /usr.bin/sendbug/sendbug.c | |
parent | d8d0f110b58d51ca103ce11cd1ae2997198a2ad6 (diff) |
Remove variable name from prototype.
Diffstat (limited to 'usr.bin/sendbug/sendbug.c')
-rw-r--r-- | usr.bin/sendbug/sendbug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sendbug/sendbug.c b/usr.bin/sendbug/sendbug.c index 44cab8efae1..df4a4fd387c 100644 --- a/usr.bin/sendbug/sendbug.c +++ b/usr.bin/sendbug/sendbug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sendbug.c,v 1.31 2007/03/26 18:13:08 moritz Exp $ */ +/* $OpenBSD: sendbug.c,v 1.32 2007/03/27 03:40:44 ray Exp $ */ /* * Written by Ray Lai <ray@cyth.net>. @@ -30,7 +30,7 @@ int editit(char *); void init(void); int prompt(void); -int send_file(const char *, int dst); +int send_file(const char *, int); int sendmail(const char *); void template(FILE *); |