utils: Fix indentation

This commit is contained in:
joel16 2021-01-16 00:14:16 -05:00
parent 881d52af19
commit 526934cfec
2 changed files with 2 additions and 6 deletions

View File

@ -325,10 +325,8 @@ void build_exports_output_extern(struct psp_export *pHead)
pExp = pHead;
while(pExp != NULL)
{
if (strchr(pExp->name, '+') == NULL)
{
fprintf(stdout, "extern char %s;\n", pExp->name);
}
if (strchr(pExp->name, '+') == NULL)
fprintf(stdout, "extern char %s;\n", pExp->name);
pExp = pExp->pNext;
}
}

View File

@ -622,9 +622,7 @@ int fixup_functions(void)
pNid = (unsigned int *) g_nid->pData;
if(g_verbose)
{
fprintf(stderr, "Import count %d\n", count);
}
while(count > 0)
{