OSDN Git Service

pcm: Fix a wrong value shown in the error message in rate plugin
authorLaurentiu Nicola <grayshade@gmail.com>
Thu, 8 Aug 2013 10:29:09 +0000 (12:29 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 8 Aug 2013 10:29:09 +0000 (12:29 +0200)
Signed-off-by: Takashi Iwai <tiwai@suse.de>
src/pcm/pcm.c

index ca4d416..c54fa06 100644 (file)
@@ -7932,7 +7932,7 @@ int snd_pcm_set_params(snd_pcm_t *pcm,
                return err;
        }
        if (rrate != rate) {
-               SNDERR("Rate doesn't match (requested %iHz, get %iHz)", rate, err);
+               SNDERR("Rate doesn't match (requested %iHz, get %iHz)", rate, rrate);
                return -EINVAL;
        }
        /* set the buffer time */