From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Wed, 30 Jun 2021 08:49:16 +0000 (+0100) Subject: Correct the information in a non-available frame rate error message from audio_alsa.c. X-Git-Tag: 4.1-dev~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c08ccd4d0f70b67a3aba5655c9e982609d71c4f;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 74eecc08..14dfcec2 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 %d fps. (The nearest speed available is: %d fps.)", speeds[i], actual_sample_rate); + die("The output DAC can not be set to %d frames per second (fps). The nearest speed available is %d fps.", speeds[i], actual_sample_rate); } else { i++; }