PR 51194 David Binderman: simplify redundant conditional

This commit is contained in:
dholland 2016-05-31 04:12:10 +00:00
parent e5e22563a1
commit f56f9deac4
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: parseutils.c,v 1.2 2007/11/11 05:20:27 isaki Exp $ */
/* $NetBSD: parseutils.c,v 1.3 2016/05/31 04:12:10 dholland Exp $ */
/*
* from /sys/arch/i386/lib/parseutils.c
@ -64,7 +64,7 @@ gettrailer(char *arg)
*options++ = '\0';
/* trim leading blanks */
while (*options && *options == ' ')
while (*options == ' ')
options++;
return options;