Minor style fix - change 'if(!*v)' to 'if (!*v)'
This commit is contained in:
parent
a8658ef38f
commit
855aedd7e7
@ -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 <sys/param.h>
|
||||
@ -556,7 +556,7 @@ get_int(v, lp)
|
||||
|
||||
for (; *v && isspace(*v); ++v);
|
||||
|
||||
if(!*v) {
|
||||
if (!*v) {
|
||||
*lp = 0;
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user