From 3f3d496f8b8bf0bb2e74b0bf8268d3a19cbf553d Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Thu, 3 Jul 2008 08:21:43 +0200 Subject: [PATCH] help.c: Fix line endings (CRLF -> LF) --- help.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/help.c b/help.c index 2ed68389fe..fc45f463e3 100644 --- a/help.c +++ b/help.c @@ -28,12 +28,12 @@ enum help_format { HELP_FORMAT_WEB, }; -static int show_all = 0; -#ifdef __MINGW32__ -static enum help_format help_format = HELP_FORMAT_WEB; +static int show_all = 0; +#ifdef __MINGW32__ +static enum help_format help_format = HELP_FORMAT_WEB; #else static enum help_format help_format = HELP_FORMAT_MAN; -#endif +#endif static struct option builtin_help_options[] = { OPT_BOOLEAN('a', "all", &show_all, "print all available commands"), OPT_SET_INT('m', "man", &help_format, "show man page", HELP_FORMAT_MAN),