(egl_common) Fix clang warnings

This commit is contained in:
Higor Eurípedes 2015-11-19 10:04:18 -03:00
parent fe36eb6bdd
commit ad745a5661

View File

@ -55,7 +55,7 @@ gfx_ctx_proc_t egl_get_proc_address(const char *symbol)
retro_assert(sizeof(void*) == sizeof(void (*)(void)));
sym__ = eglGetProcAddress(symbol);
sym__ = (void*)eglGetProcAddress(symbol);
memcpy(&ret, &sym__, sizeof(void*));
return ret;