More fixes for Watcom C / C89.
git-svn-id: svn://svn.cc65.org/cc65/trunk@3829 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -646,9 +646,13 @@ static unsigned char FindDotKeyword (void)
|
||||
* return TOK_NONE if not found.
|
||||
*/
|
||||
{
|
||||
struct DotKeyword K = { SB_GetConstBuf (&SVal), 0 };
|
||||
struct DotKeyword K;
|
||||
struct DotKeyword* R;
|
||||
|
||||
/* Initialize K */
|
||||
K.Key = SB_GetConstBuf (&SVal);
|
||||
K.Tok = 0;
|
||||
|
||||
/* If we aren't in ignore case mode, we have to uppercase the keyword */
|
||||
if (!IgnoreCase) {
|
||||
UpcaseSVal ();
|
||||
|
||||
Reference in New Issue
Block a user