psp-fixup-imports: remove one gratuitous level of indentation

there's so many indented blocks, it's hardly possible to read the code even
on a terminal that's been resized to 160 chars wide.
This commit is contained in:
rofl0r
2022-03-23 16:37:20 +00:00
parent cc887d731f
commit a797442dd9

View File

@@ -499,8 +499,7 @@ int load_mapfile(const char *mapfile)
struct ImportMap *currmap = NULL; struct ImportMap *currmap = NULL;
int line = 0; int line = 0;
if(mapfile != NULL) if(mapfile == NULL) return ret;
{
do do
{ {
FILE *fp; FILE *fp;
@@ -608,7 +607,6 @@ int load_mapfile(const char *mapfile)
} }
} }
while(0); while(0);
}
return ret; return ret;
} }