getsubopt: use regular assert()s
This commit is contained in:
parent
a187743e75
commit
01b5238d50
1 changed files with 2 additions and 2 deletions
|
@ -54,8 +54,8 @@ getsubopt(optionp, tokens, valuep)
|
||||||
int cnt;
|
int cnt;
|
||||||
char *p;
|
char *p;
|
||||||
|
|
||||||
_DIAGASSERT(tokens != NULL);
|
assert(tokens != NULL);
|
||||||
_DIAGASSERT(valuep != NULL);
|
assert(valuep != NULL);
|
||||||
/* optionp is tested below */
|
/* optionp is tested below */
|
||||||
|
|
||||||
suboptarg = *valuep = NULL;
|
suboptarg = *valuep = NULL;
|
||||||
|
|
Loading…
Reference in a new issue