Output (BATCH ONLY) rather than (DRY RUN) for --only-write-batch.

This commit is contained in:
Wayne Davison
2008-01-19 11:20:42 -08:00
parent 69e2b4ee3a
commit 641dc0c51e

2
main.c
View File

@@ -278,7 +278,7 @@ static void output_summary(void)
rprintf(FINFO, "total size is %s speedup is %.2f%s\n",
human_num(stats.total_size),
(double)stats.total_size / (total_written+total_read),
dry_run ? " (DRY RUN)" : "");
write_batch < 0 ? " (BATCH ONLY)" : dry_run ? " (DRY RUN)" : "");
}
fflush(stdout);