getsubopt: use regular assert()s

This commit is contained in:
Ben Gras 2010-06-26 02:37:17 +00:00
parent a187743e75
commit 01b5238d50

View file

@ -54,8 +54,8 @@ getsubopt(optionp, tokens, valuep)
int cnt;
char *p;
_DIAGASSERT(tokens != NULL);
_DIAGASSERT(valuep != NULL);
assert(tokens != NULL);
assert(valuep != NULL);
/* optionp is tested below */
suboptarg = *valuep = NULL;