mirror of
https://github.com/cc65/cc65.git
synced 2025-02-03 22:32:24 +00:00
Fix coding style.
This commit is contained in:
parent
b31ae57be1
commit
c0812670c1
@ -3547,7 +3547,7 @@ void g_lt (unsigned flags, unsigned long val)
|
||||
/* Test for less than */
|
||||
{
|
||||
static const char* const ops[4] = {
|
||||
"tosltax", "tosultax", "toslteax", "tosulteax",
|
||||
"tosltax", "tosultax", "toslteax", "tosulteax"
|
||||
};
|
||||
|
||||
unsigned Label;
|
||||
|
@ -230,8 +230,11 @@ static int findToken (const char * const *tokenTbl, const char *token)
|
||||
{
|
||||
/* takes as input table of tokens and token, returns position in table or -1 if not found */
|
||||
int i;
|
||||
|
||||
for (i = 0; tokenTbl[i][0]; i++) {
|
||||
if (strcmp (tokenTbl[i], token) == 0) return i;
|
||||
if (strcmp (tokenTbl[i], token) == 0) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
return -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user