From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Wed, 30 Jun 2021 08:46:41 +0000 (+0100) Subject: Correct the information in a non-available frame rate error message from audio_alsa.c. X-Git-Tag: 4.1-dev~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e24897d4dac74eba06ca8efcf9bc8fdc54c799e;p=thirdparty%2Fshairport-sync.git Correct the information in a non-available frame rate error message from audio_alsa.c. --- diff --git a/audio_alsa.c b/audio_alsa.c index aa1258f8..74eecc08 100644 --- a/audio_alsa.c +++ b/audio_alsa.c @@ -559,7 +559,7 @@ int actual_open_alsa_device(int do_auto_setup) { if (ret == 0) { speed_found = 1; if (actual_sample_rate != speeds[i]) - die("The frame rate of the output DAC can not be set to a multiple of 44100 fps. (The nearest speed available is: %d fps.)", speeds[i], actual_sample_rate); + die("The frame rate of the output DAC can not be set to a %d fps. (The nearest speed available is: %d fps.)", speeds[i], actual_sample_rate); } else { i++; }