mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 06:44:27 +00:00
Turns out this is char*, let's cast because CXX_BUILD wants that
This commit is contained in:
parent
fbd3a435d2
commit
ff4dca86f9
@ -923,7 +923,7 @@ bool config_file_write(config_file_t *conf, const char *path)
|
|||||||
|
|
||||||
/* TODO: this is only useful for a few platforms, find which and add ifdef */
|
/* TODO: this is only useful for a few platforms, find which and add ifdef */
|
||||||
buf = calloc(1, 0x4000);
|
buf = calloc(1, 0x4000);
|
||||||
setvbuf(file, buf, _IOFBF, 0x4000);
|
setvbuf(file, (char*)buf, _IOFBF, 0x4000);
|
||||||
|
|
||||||
config_file_dump(conf, file);
|
config_file_dump(conf, file);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user