(task_database.c) Fix some warnings

This commit is contained in:
twinaphex 2015-06-15 22:48:41 +02:00
parent 0d400d027b
commit b08c399d3b

View File

@ -111,12 +111,11 @@ static int database_info_iterate_playlist(
db_state->crc = zlib_crc32_calculate(db_state->buf, ret); db_state->crc = zlib_crc32_calculate(db_state->buf, ret);
#endif #endif
db->type = DATABASE_TYPE_CRC_LOOKUP; db->type = DATABASE_TYPE_CRC_LOOKUP;
return 1;
} }
break; break;
} }
return 0; return 1;
} }
static int database_info_list_iterate_end_no_match(database_state_handle_t *db_state) static int database_info_list_iterate_end_no_match(database_state_handle_t *db_state)