Merge "log: Fix commit headers and -p flag"

This commit is contained in:
Shawn O. Pearce 2010-09-06 12:06:17 -04:00 committed by Code Review
commit f395b84390
1 changed files with 1 additions and 1 deletions

View File

@ -234,10 +234,10 @@ private void showDiff(RevCommit c) throws IOException {
if (showNameAndStatusOnly)
Diff.nameStatus(out, diffFmt.scan(a, b));
else {
out.flush();
diffFmt.format(a, b);
diffFmt.flush();
}
out.println();
out.flush();
}
}