diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2011-05-13 09:52:51 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2011-05-13 09:52:51 +0200 |
| commit | 3566c737ecc35b17a09430eca8b6cb5fcc187245 (patch) | |
| tree | 30cf569ba80d12afb158baba9c6257639eeead7a /src/cli | |
| parent | 7cfbac7966d99568565abea25a57522288d9a279 (diff) | |
| parent | e123c5f3b4bdd10f3b495a4a948f6c452ed6205f (diff) | |
Merge branch 'master' into report_api
Diffstat (limited to 'src/cli')
| -rw-r--r-- | src/cli/report.c | 4 |
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); |
