PERFORCE change 179027 for review
Garrett Cooper
gcooper at FreeBSD.org
Mon May 31 23:42:50 UTC 2010
http://p4web.freebsd.org/@@179027?ac=10
Change 179027 by gcooper at gcooper-bayonetta on 2010/05/31 23:42:31
Fix accidental regression.
Affected files ...
.. //depot/projects/soc2007/gcooper-pkg_install-enhancements-simplified/lib/libpkg/plist.c#12 edit
Differences ...
==== //depot/projects/soc2007/gcooper-pkg_install-enhancements-simplified/lib/libpkg/plist.c#12 (text+ko) ====
@@ -258,7 +258,8 @@
if (isspace(*cp)) {
*cp = '\0';
/* Never sure if macro, increment later */
- while (isspace(*sp++)) ;
+ while (isspace(*sp))
+ sp++;
break;
}
cp++;
More information about the p4-projects
mailing list