From 7223426a2bcc3bd92f0c6bed56cce0d76028558f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 21 Nov 2002 05:17:21 +0000 Subject: [PATCH 1/1] (trace_argmatch, report_argmatch): Use verify rather than assert. --- src/getargs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/getargs.c b/src/getargs.c index 0113f337..b9a30698 100644 --- a/src/getargs.c +++ b/src/getargs.c @@ -88,7 +88,7 @@ static const int trace_types[] = static void trace_argmatch (char *args) { - ARGMATCH_ASSERT (trace_args, trace_types); + verify (trace_constraint, ARGMATCH_CONSTRAINT (trace_args, trace_types)); if (args) { args = strtok (args, ","); @@ -139,7 +139,7 @@ static const int report_types[] = static void report_argmatch (char *args) { - ARGMATCH_ASSERT (report_args, report_types); + verify (report_constraint, ARGMATCH_CONSTRAINT (report_args, report_types)); args = strtok (args, ","); do { -- 2.45.2