diff options
author | wens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2006-09-14 09:14:05 +0800 |
---|---|---|
committer | wens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2006-09-14 09:14:05 +0800 |
commit | 3f5d885e592f443ce831c5b1c124f54976207733 (patch) | |
tree | 3be7ce4642d8870bdb08e6179235935afb15e726 | |
parent | b6f5a2d2010a57ea85252d11bc0beed9bf9a387a (diff) | |
download | pttbbs-3f5d885e592f443ce831c5b1c124f54976207733.tar pttbbs-3f5d885e592f443ce831c5b1c124f54976207733.tar.gz pttbbs-3f5d885e592f443ce831c5b1c124f54976207733.tar.bz2 pttbbs-3f5d885e592f443ce831c5b1c124f54976207733.tar.lz pttbbs-3f5d885e592f443ce831c5b1c124f54976207733.tar.xz pttbbs-3f5d885e592f443ce831c5b1c124f54976207733.tar.zst pttbbs-3f5d885e592f443ce831c5b1c124f54976207733.zip |
fix compile error
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3412 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | util/broadcast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/broadcast.c b/util/broadcast.c index 1ccf4675..79e02799 100644 --- a/util/broadcast.c +++ b/util/broadcast.c @@ -24,7 +24,7 @@ int main(int argc, char *argv[]) while ((i = getopt(argc, argv, "t:n:o:h")) != -1) switch (i) { case 'h': - print_help(); + print_help(argc, argv); return 0; break; case 't': |