From d4f37d4bd18236ed2817ff6284f7691613646176 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Tue, 11 Sep 2007 23:06:38 +0000 Subject: macro argument unused, using local instead; spotted by mpf --- bin/chio/parse.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/chio/parse.y b/bin/chio/parse.y index a3af5f7c9ca..c72489b1c2c 100644 --- a/bin/chio/parse.y +++ b/bin/chio/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.5 2007/09/11 22:16:15 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.6 2007/09/11 23:06:37 deraadt Exp $ */ /* * Copyright (c) 2006 Bob Beck @@ -296,7 +296,7 @@ yylex(void) } #define allowed_to_end_number(x) \ - (isspace(x) || c == ')' || c ==',' || c == '/' || c == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') if (c == '-' || isdigit(c)) { do { -- cgit v1.2.3