mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-24 03:52:08 +00:00
Fix some make checkcodebase errors
- Reorder checkpatch ignore flags alphabetically - Fix checkpatch WARNINGs and CHECKs when they make sense - Add more checkpatch ignores
This commit is contained in:
@@ -265,13 +265,12 @@ static void writesymbol(struct sSymbol *pSym, FILE *f)
|
||||
uint32_t offset;
|
||||
int32_t sectid;
|
||||
|
||||
if (!(pSym->nType & SYMF_DEFINED)) {
|
||||
if (!(pSym->nType & SYMF_DEFINED))
|
||||
type = SYMTYPE_IMPORT;
|
||||
} else if (pSym->nType & SYMF_EXPORT) {
|
||||
else if (pSym->nType & SYMF_EXPORT)
|
||||
type = SYMTYPE_EXPORT;
|
||||
} else {
|
||||
else
|
||||
type = SYMTYPE_LOCAL;
|
||||
}
|
||||
|
||||
switch (type) {
|
||||
case SYMTYPE_LOCAL:
|
||||
|
||||
Reference in New Issue
Block a user