(libretroDB) Fix Android warnings

This commit is contained in:
twinaphex 2015-01-20 01:28:51 +01:00
parent 0e7a9739f0
commit fe491ca7f3
1 changed files with 6 additions and 6 deletions

View File

@ -43,7 +43,7 @@ static void raise_expected_number(
#else #else
"%llu::Expected number", "%llu::Expected number",
#endif #endif
where (unsigned long long)where
); );
*error = tmp_error_buff; *error = tmp_error_buff;
} }
@ -60,7 +60,7 @@ static void raise_expected_string(
#else #else
"%llu::Expected string", "%llu::Expected string",
#endif #endif
where (unsigned long long)where
); );
*error = tmp_error_buff; *error = tmp_error_buff;
} }
@ -77,7 +77,7 @@ static void raise_unexpected_eof(
#else #else
"%llu::Unexpected EOF", "%llu::Unexpected EOF",
#endif #endif
where (unsigned long long)where
); );
*error = tmp_error_buff; *error = tmp_error_buff;
} }
@ -105,7 +105,7 @@ static void raise_unknown_function(
#else #else
"%llu::Unknown function '", "%llu::Unknown function '",
#endif #endif
where (unsigned long long)where
); );
if (len < (MAX_ERROR_LEN - n - 3)) { if (len < (MAX_ERROR_LEN - n - 3)) {
strncpy(tmp_error_buff + n, name, len); strncpy(tmp_error_buff + n, name, len);
@ -126,7 +126,7 @@ static void raise_expected_eof(
#else #else
"%llu::Expected EOF found '%c'", "%llu::Expected EOF found '%c'",
#endif #endif
where, (unsigned long long)where,
found found
); );
*error = tmp_error_buff; *error = tmp_error_buff;
@ -146,7 +146,7 @@ static void raise_unexpected_char(
#else #else
"%llu::Expected '%c' found '%c'", "%llu::Expected '%c' found '%c'",
#endif #endif
where, (unsigned long long)where,
expected, expected,
found found
); );