From bf6271821f616f299e51bd542502f0846b16980f Mon Sep 17 00:00:00 2001 From: Chris Costello Date: Sat, 14 Aug 1999 05:38:04 +0000 Subject: [PATCH] Minor style fix - change 'if(!*v)' to 'if (!*v)' --- bin/test/test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/test/test.c b/bin/test/test.c index 2b7bd42ba213..e6cdf552ff6f 100644 --- a/bin/test/test.c +++ b/bin/test/test.c @@ -45,7 +45,7 @@ static char const copyright[] = static char sccsid[] = "@(#)test.c 8.3 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: test.c,v 1.20 1998/09/07 16:59:05 cracauer Exp $"; + "$Id: test.c,v 1.21 1999/05/08 10:22:15 kris Exp $"; #endif /* not lint */ #include @@ -556,7 +556,7 @@ get_int(v, lp) for (; *v && isspace(*v); ++v); - if(!*v) { + if (!*v) { *lp = 0; return; }