mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-20 09:52:33 +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 */
|
||||
buf = calloc(1, 0x4000);
|
||||
setvbuf(file, buf, _IOFBF, 0x4000);
|
||||
setvbuf(file, (char*)buf, _IOFBF, 0x4000);
|
||||
|
||||
config_file_dump(conf, file);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user