mirror of
https://github.com/frida/tinycc
synced 2024-11-27 18:19:35 +03:00
tcc_add_support(): void return for win
This commit is contained in:
parent
43ae350390
commit
89935229a7
2
tccpe.c
2
tccpe.c
@ -1855,7 +1855,7 @@ ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack)
|
||||
|
||||
static void tcc_add_support(TCCState *s1, const char *filename)
|
||||
{
|
||||
if(!filename || strlen(filename)==0) return 0;
|
||||
if(!filename || strlen(filename)==0) return;
|
||||
if (tcc_add_dll(s1, filename, 0) < 0)
|
||||
tcc_error_noabort("%s not found", filename);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user