From c00ce6091514f55931cb15d8dec014767ad918b4 Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Wed, 2 Jul 2008 16:32:48 +0200 Subject: [PATCH] convert.c: Fix style (no functional changes) --- convert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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--; }