convert.c: Fix style (no functional changes)

This commit is contained in:
Steffen Prohaska
2008-07-02 16:32:48 +02:00
parent 5278ad45e3
commit c00ce60915

View File

@@ -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--;
}