1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Comment fix.

This commit is contained in:
acqn 2020-07-12 12:18:55 +08:00 committed by Oliver Schmidt
parent 7d652d42dc
commit 727040d1ac

View File

@ -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;
}
}