commit 22829cab882af7f0ae469be2d0543b835487d876 parent 0dbda4c6b7e6e8a6703aa1218ae2d8e427305af6 Author: Frederic Cambus <fred@statdns.com> Date: Sat, 26 Feb 2022 14:24:47 +0100 Remove useless backslashes in usage(). Diffstat:
M | src/logswan.c | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/logswan.c b/src/logswan.c @@ -4,7 +4,7 @@ * https://www.logswan.org * * Created: 2015-05-31 - * Last Updated: 2021-11-16 + * Last Updated: 2022-02-26 * * Logswan is released under the BSD 2-Clause license. * See LICENSE file for details. @@ -46,11 +46,11 @@ static void usage() { - printf("logswan [-ghv] [-d db] logfile\n\n" \ - "The options are as follows:\n\n" \ - " -d db Specify path to a GeoIP database.\n" \ - " -g Enable GeoIP lookups.\n" \ - " -h Display usage.\n" \ + printf("logswan [-ghv] [-d db] logfile\n\n" + "The options are as follows:\n\n" + " -d db Specify path to a GeoIP database.\n" + " -g Enable GeoIP lookups.\n" + " -h Display usage.\n" " -v Display version.\n"); }