From a87c0a22479a5ff4bfdf8c8e92857350628807c3 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 11 May 2011 15:20:59 +0200 Subject: whitespace fixes. no code changes Signed-off-by: Denys Vlasenko --- src/cli/report.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cli/report.c') diff --git a/src/cli/report.c b/src/cli/report.c index 93d1abd9..7f722480 100644 --- a/src/cli/report.c +++ b/src/cli/report.c @@ -682,7 +682,7 @@ int report(const char *dump_dir_name, int flags) /* Load problem_data from (possibly updated by analyze) dump dir */ struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); if (!dd) - return -1; + return -1; char *analyze_events_as_lines = list_possible_events(dd, NULL, "analyze"); dd_close(dd); @@ -705,7 +705,7 @@ int report(const char *dump_dir_name, int flags) /* Load problem_data from (possibly updated by analyze) dump dir */ dd = dd_opendir(dump_dir_name, /*flags:*/ 0); if (!dd) - return -1; + return -1; char *report_events_as_lines = list_possible_events(dd, NULL, "report"); problem_data_t *problem_data = create_problem_data_from_dump_dir(dd); -- cgit