From 3f6a5ea64104c0a1a55fed90f51199caa30150d1 Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Tue, 27 Mar 2012 22:12:26 +0300 Subject: [PATCH] options.c: Wrap long lines This makes it easier to read the code on 80 character wide editor and console windows. Signed-off-by: Timo Kokkonen --- options.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/options.c b/options.c index 8392f99..3a0148d 100644 --- a/options.c +++ b/options.c @@ -64,7 +64,9 @@ int read_args(int argc, char *argv[], struct user_options *opts) if ( strcmp(optarg, "csv") == 0 ) { opts->output_format = CSV; } else { - trace(0, "Unknown format type \"%s\", must be one of \"raw\", \"clean\", or \"csv\"\n", optarg ); + trace(0, "Unknown format type \"%s\", " + "must be one of \"raw\", \"clean\", " + "or \"csv\"\n", optarg); return -1; } break; -- 2.45.0