diff --git a/convert.c b/convert.c index f24ac25c49..1d3e8b02f1 100644 --- a/convert.c +++ b/convert.c @@ -63,7 +63,7 @@ static void gather_stats(const char *buf, unsigned long size, struct text_stat * } // If file ends with EOF then don't count this EOF as non-printable - if ( size >= 1 && buf[size-1] == '\032' ) + if (size >= 1 && buf[size-1] == '\032') stats->nonprintable--; }