From: Mike Brady Date: Wed, 2 Jan 2019 22:40:48 +0000 (+0000) Subject: Fix trivial error in a debug message. X-Git-Tag: 3.3RC0~66^2~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15729ebcd43005039dc40169491599b3b53177ff;p=thirdparty%2Fshairport-sync.git Fix trivial error in a debug message. --- diff --git a/audio_alsa.c b/audio_alsa.c index c41c5a06..26aac7b0 100644 --- a/audio_alsa.c +++ b/audio_alsa.c @@ -1081,7 +1081,7 @@ int delay_prep_and_status(snd_pcm_state_t *state, snd_pcm_sframes_t *delay) { measurement_data_is_valid = 0; if ((*state != SND_PCM_STATE_PREPARED)) { - debug(1, "alsa: can't get device into valid state in delay. State is %d.", state); + debug(1, "alsa: can't get device into valid state in delay. State is %d.", *state); ret = sps_extra_code_output_state_cannot_make_ready; } }