1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Adjusted project name.

This commit is contained in:
Oliver Schmidt 2020-07-28 23:29:16 +02:00 committed by GitHub
parent cbb33f86e8
commit 8eab28012a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -692,7 +692,7 @@ static int ParseFieldWidth (Declaration* Decl)
if (SizeOf (Decl->Type) != SizeOf (type_uint)) {
/* Only int sized types may be used for bit-fields for now */
Error ("CC65 currently only supports unsigned int bit-fields");
Error ("cc65 currently only supports unsigned int bit-fields");
return -1;
}