(Android) Silence unused variable warnings

This commit is contained in:
twinaphex 2015-02-05 19:59:43 +01:00
parent d535be570c
commit 48e56da8be

View File

@ -93,9 +93,11 @@ int database_info_write_rdl(const char *dir)
#endif #endif
{ {
ssize_t ret; ssize_t ret;
uint32_t crc, target_crc; uint32_t crc, target_crc = 0;
uint8_t *ret_buf = NULL; uint8_t *ret_buf = NULL;
(void)target_crc;
RARCH_LOG("name: %s\n", name); RARCH_LOG("name: %s\n", name);
ret = read_file(name, (void**)&ret_buf); ret = read_file(name, (void**)&ret_buf);