From d470ebe8c38c0df66a84db23ef32681278bda2fe Mon Sep 17 00:00:00 2001 From: nemobis Date: Sat, 12 Jul 2014 00:17:50 +0200 Subject: [PATCH] Remove excess semicolon MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit $ 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wikiq.cpp b/wikiq.cpp index 1dce957..3451582 100644 --- 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 " << endl; + << "authors: Erik Garrison " << endl << " Benjamin Mako Hill " << endl; } -- 2.30.2