mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
Fixed error message of CheckedPSizeOf().
This commit is contained in:
parent
e3d913b81a
commit
bae431eab0
@ -919,7 +919,7 @@ unsigned CheckedPSizeOf (const Type* T)
|
||||
{
|
||||
unsigned Size = PSizeOf (T);
|
||||
if (Size == 0) {
|
||||
Error ("Size of type '%s' is unknown", GetFullTypeName (T));
|
||||
Error ("Size of type '%s' is unknown", GetFullTypeName (T + 1));
|
||||
Size = SIZEOF_CHAR; /* Don't return zero */
|
||||
}
|
||||
return Size;
|
||||
|
Loading…
x
Reference in New Issue
Block a user