From d4125ebc8dae28e8ade858ba519bca7fbeb6ccae Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20Bie=C3=9Fmann?= Date: Tue, 2 Jul 2013 08:37:36 +0200 Subject: [PATCH] tools/proftool: remove REG_NOERROR MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Remove non portable usage of REG_NOERROR. BSD (like OS X) variants of regex.h do not declare REG_NOERROR, even GNU regex(3) does not mention REG_NOERROR, just remove it. Signed-off-by: Andreas Bießmann Acked-by: Jeroen Hofstee --- tools/proftool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/proftool.c b/tools/proftool.c index a48ed286a5..aa05e77ece 100644 --- a/tools/proftool.c +++ b/tools/proftool.c @@ -333,7 +333,7 @@ static void check_trace_config_line(struct trace_configline_info *item) if (err == REG_NOMATCH) continue; - if (err != REG_NOERROR) { + if (err) { regex_report_error(&item->regex, err, "match", item->name); break; -- 2.39.2