Skip to content

Commit

Permalink
Fix missing newline in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
moinakg committed Sep 21, 2014
1 parent 50643b1 commit 3debf13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rabin/rabin_dedup.c
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ dedupe_compress(dedupe_context_t *ctx, uchar_t *buf, uint64_t *size, uint64_t of
DEBUG_STAT_EN(en = get_wtime_millis());
DEBUG_STAT_EN(fprintf(stderr, "Chunking speed %.3f MB/s, Overall Dedupe speed %.3f MB/s\n",
get_mb_s(*size, strt, en_1), get_mb_s(*size, strt, en - (w2 - w1))));
DEBUG_STAT_EN(fprintf(stderr, "No Dedupe possible."));
DEBUG_STAT_EN(fprintf(stderr, "No Dedupe possible.\n"));
ctx->valid = 0;
return (0);
}
Expand Down

0 comments on commit 3debf13

Please sign in to comment.