Fix extraneous semicolon.

This commit is contained in:
Rene Gollent 2012-11-21 23:40:20 -05:00
parent 8f6bf9abf6
commit 6656d950c4
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ DebugReportGenerator::GenerateReport(const entry_ref& outputPath)
BString output;
result = _GenerateReportHeader(output);
if (result != B_OK);
if (result != B_OK)
return result;
result = _DumpLoadedImages(output);