1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-13 09:31:53 +00:00

Fixed a watcom warning

git-svn-id: svn://svn.cc65.org/cc65/trunk@2823 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-12-22 23:13:15 +00:00
parent 46a013c312
commit 23935bd4c6

View File

@ -687,6 +687,8 @@ static char GetAddrSizeCode (unsigned char AddrSize)
case ADDR_SIZE_LONG: return 'L';
default:
Internal ("Invalid address size: %u", AddrSize);
/* NOTREACHED */
return '-';
}
}