mirror of
https://github.com/frida/tinycc
synced 2024-12-24 05:56:49 +03:00
Silence FIXME and compiler warning
This commit is contained in:
parent
ceccd3ead3
commit
8e4d64be2f
2
tcc.c
2
tcc.c
@ -132,7 +132,7 @@ static void help(void)
|
||||
#include <process.h>
|
||||
static int execvp_win32(const char *prog, char **argv)
|
||||
{
|
||||
int ret = spawnvp(P_NOWAIT, prog, (const char *const*)argv);
|
||||
int ret = spawnvp(P_NOWAIT, prog, (char *const*)argv);
|
||||
if (-1 == ret)
|
||||
return ret;
|
||||
cwait(&ret, ret, WAIT_CHILD);
|
||||
|
3
tccelf.c
3
tccelf.c
@ -573,6 +573,9 @@ ST_FUNC void relocate_section(TCCState *s1, Section *s)
|
||||
goto output_file;
|
||||
write16le(ptr, read16le(ptr) + val - addr);
|
||||
break;
|
||||
case R_386_RELATIVE:
|
||||
/* do nothing */
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr,"FIXME: handle reloc type %d at %x [%p] to %x\n",
|
||||
type, (unsigned)addr, ptr, (unsigned)val);
|
||||
|
Loading…
Reference in New Issue
Block a user