Indentation was missing after empty string check was added by wanjochan.
This commit is contained in:
parent
bea7dcde86
commit
6d819d7267
2 changed files with 4 additions and 4 deletions
2
tccelf.c
2
tccelf.c
|
@ -1457,7 +1457,7 @@ ST_FUNC void tcc_add_runtime(TCCState *s1)
|
|||
tcc_add_btstub(s1);
|
||||
}
|
||||
#endif
|
||||
if ( strlen ( TCC_LIBTCC1 ) > 0 )
|
||||
if (strlen(TCC_LIBTCC1) > 0)
|
||||
tcc_add_support(s1, TCC_LIBTCC1);
|
||||
#ifndef TCC_TARGET_MACHO
|
||||
/* add crt end if not memory output */
|
||||
|
|
2
tccpe.c
2
tccpe.c
|
@ -1923,7 +1923,7 @@ static void pe_add_runtime(TCCState *s1, struct pe_info *pe)
|
|||
"msvcrt", "kernel32", "", "user32", "gdi32", NULL
|
||||
};
|
||||
const char **pp, *p;
|
||||
if ( strlen ( TCC_LIBTCC1 ) > 0 )
|
||||
if (strlen(TCC_LIBTCC1) > 0)
|
||||
tcc_add_support(s1, TCC_LIBTCC1);
|
||||
for (pp = libs; 0 != (p = *pp); ++pp) {
|
||||
if (*p)
|
||||
|
|
Loading…
Reference in a new issue