Skip to content

Commit

Permalink
Stop some warnings during build for Docker.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebrady committed Oct 23, 2023
1 parent 2a5c49d commit 626f986
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions player.c
Original file line number Diff line number Diff line change
Expand Up @@ -2057,9 +2057,9 @@ void *player_thread_func(void *arg) {
int64_t tsum_of_sync_errors, tsum_of_corrections, tsum_of_insertions_and_deletions,
tsum_of_drifts;
int64_t previous_sync_error = 0, previous_correction = 0;
uint64_t minimum_dac_queue_size;
int32_t minimum_buffer_occupancy;
int32_t maximum_buffer_occupancy;
uint64_t minimum_dac_queue_size = 0;
int32_t minimum_buffer_occupancy = 0;
int32_t maximum_buffer_occupancy = 0;

#ifdef CONFIG_AIRPLAY_2
conn->ap2_audio_buffer_minimum_size = -1;
Expand Down

0 comments on commit 626f986

Please sign in to comment.