Prevent warning

This commit is contained in:
twinaphex 2016-09-21 02:17:32 +02:00
parent dbf6d9331f
commit 55517dbc12

View File

@ -165,8 +165,7 @@ static bool file_get_crc(database_state_handle_t *db_state,
if (read_from != 1 || ret <= 0)
return 0;
*crc = encoding_crc32(
0, db_state->buf, ret);
*crc = encoding_crc32(0, db_state->buf, ret);
return 1;
}