Merge pull request #8608 from orbea/cxxbuild

Fix some CXX_BUILD errors.
This commit is contained in:
Twinaphex 2019-04-20 16:23:46 +02:00 committed by GitHub
commit 26bbf46054
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5357,7 +5357,7 @@ void rarch_log_file_init(void)
* logging to file, and wish to do so */ * logging to file, and wish to do so */
/* > Check whether we are already logging to console */ /* > Check whether we are already logging to console */
fp = retro_main_log_file(); fp = (FILE*)retro_main_log_file();
if (fp) if (fp)
{ {
/* De-initialise existing logger */ /* De-initialise existing logger */
@ -5413,7 +5413,7 @@ void rarch_log_file_deinit(void)
} }
/* If logging is currently disabled... */ /* If logging is currently disabled... */
fp = retro_main_log_file(); fp = (FILE*)retro_main_log_file();
if (!fp) if (!fp)
{ {
/* ...initialise logging to console */ /* ...initialise logging to console */