From 727040d1ac77bff60628b87256c7bb8054fd4c02 Mon Sep 17 00:00:00 2001 From: acqn Date: Sun, 12 Jul 2020 12:18:55 +0800 Subject: [PATCH] Comment fix. --- src/cc65/scanner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc65/scanner.c b/src/cc65/scanner.c index 91abd332d..5040cdf08 100644 --- a/src/cc65/scanner.c +++ b/src/cc65/scanner.c @@ -561,7 +561,7 @@ static void NumericConst (void) Types = IT_INT | IT_LONG | IT_ULONG; WarnTypes = IT_LONG | IT_ULONG; } else { - /* Binary, octal or hex constants can be of any type */ + /* Binary, octal and hex constants can be of any type */ Types = IT_INT | IT_UINT | IT_LONG | IT_ULONG; } }