mirror of
https://github.com/libretro/RetroArch
synced 2025-01-26 09:35:21 +00:00
Turns out this is char*, let's cast because CXX_BUILD wants that
This commit is contained in:
parent
c10859b745
commit
fbd3a435d2
@ -101,7 +101,7 @@ void retro_main_log_file_init(const char *path)
|
||||
|
||||
/* TODO: this is only useful for a few platforms, find which and add ifdef */
|
||||
log_file_buf = calloc(1, 0x4000);
|
||||
setvbuf(log_file_fp, log_file_buf, _IOFBF, 0x4000);
|
||||
setvbuf(log_file_fp, (char*)log_file_buf, _IOFBF, 0x4000);
|
||||
}
|
||||
|
||||
void retro_main_log_file_deinit(void)
|
||||
|
Loading…
x
Reference in New Issue
Block a user