From 01b5238d50203a934d0288231a0857deee6889a8 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Sat, 26 Jun 2010 02:37:17 +0000 Subject: [PATCH] getsubopt: use regular assert()s --- lib/libc/other/getsubopt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc/other/getsubopt.c b/lib/libc/other/getsubopt.c index 765f59562..b50ee6649 100644 --- a/lib/libc/other/getsubopt.c +++ b/lib/libc/other/getsubopt.c @@ -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; -- 2.44.0