=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/cond.c,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- src/usr.bin/make/cond.c 2007/01/04 18:01:32 1.32 +++ src/usr.bin/make/cond.c 2007/03/20 03:50:39 1.33 @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: cond.c,v 1.32 2007/01/04 18:01:32 espie Exp $ */ +/* $OpenBSD: cond.c,v 1.33 2007/03/20 03:50:39 tedu Exp $ */ /* $NetBSD: cond.c,v 1.7 1996/11/06 17:59:02 christos Exp $ */ /* @@ -644,7 +644,7 @@ /* A variable is empty when it just contains * spaces... 4/15/92, christos */ char *p; - for (p = val; *p && isspace(*p); p++) + for (p = val; isspace(*p); p++) continue; t = *p == '\0' ? True : False; }