Remove excess semicolon
authornemobis <federicoleva@tiscali.it>
Fri, 11 Jul 2014 22:17:50 +0000 (00:17 +0200)
committernemobis <federicoleva@tiscali.it>
Fri, 11 Jul 2014 22:17:50 +0000 (00:17 +0200)
$ make
g++ -O3    -c -o wikiq.o wikiq.cpp
wikiq.cpp: In function ‘void print_usage(char**)’:
wikiq.cpp:549:10: error: expected primary-expression before ‘<<’ token
make: *** [wikiq.o] Error 1

wikiq.cpp

index 1dce957f0f9515d68a6217c2a99eadd0311a117d..34515820d2af0e420c6283c05bf78e0640981a0e 100644 (file)
--- a/wikiq.cpp
+++ b/wikiq.cpp
@@ -545,7 +545,7 @@ void print_usage(char* argv[]) {
          << "unless the article is a revert to a previous revision, in which case, it" << endl
          << "contains the revision ID of the revision which was reverted to." << endl
          << endl
-         << "authors: Erik Garrison <erik@hypervolu.me>" << endl;
+         << "authors: Erik Garrison <erik@hypervolu.me>" << endl
          << "         Benjamin Mako Hill <mako@atdot.cc>" << endl;
 }
 

Benjamin Mako Hill || Want to submit a patch?