1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
This commit is contained in:
Stefan 2024-02-15 09:03:46 +01:00 committed by GitHub
parent 8d4946b3f4
commit ab0eb4fe58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -236,6 +236,7 @@ static int findToken (const char * const *tokenTbl, const char *token)
if (strcmp (tokenTbl[i], token) == 0) {
return i;
}
}
}
return -1;