summaryrefslogtreecommitdiffstats
path: root/src/cli/report.c
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-05-11 15:20:59 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2011-05-11 15:20:59 +0200
commita87c0a22479a5ff4bfdf8c8e92857350628807c3 (patch)
treea02fe12aa02f09e4a1da3968415b98e8f0939069 /src/cli/report.c
parent13764155bff0f40cc9d380513998edcea8a12459 (diff)
downloadabrt-a87c0a22479a5ff4bfdf8c8e92857350628807c3.tar.gz
abrt-a87c0a22479a5ff4bfdf8c8e92857350628807c3.tar.xz
abrt-a87c0a22479a5ff4bfdf8c8e92857350628807c3.zip
whitespace fixes. no code changes
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/cli/report.c')
-rw-r--r--src/cli/report.c4
1 files changed, 2 insertions, 2 deletions
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);