diff options
author | Adam Miartus <amiartus@de.adit-jv.com> | 2020-02-25 17:18:52 +0100 |
---|---|---|
committer | Filipe Coelho <falktx@falktx.com> | 2020-06-10 22:37:29 +0200 |
commit | 4d251434e88682cd9a19201612d4b27ec9596388 (patch) | |
tree | e7221c66f10500b1cf3c6b0c9e31fe0e358853a5 /linux | |
parent | 259a5ebc91cfd03f52411f44a41abad66033d540 (diff) | |
download | jack2-4d251434e88682cd9a19201612d4b27ec9596388.tar.gz |
alsa: fix typo in error output
Change-Id: I45e1ccf2e1b955db187eb72127a536fe5eb0b81e
Signed-off-by: Adam Miartus <external.Adam.Miartus@de.bosch.com>
(cherry picked from commit 865cad2003b57e8dd175636a5d7070a4a470e3ac)
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/alsa/alsa_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/alsa/alsa_driver.c b/linux/alsa/alsa_driver.c index 9573001a..cf3b4620 100644 --- a/linux/alsa/alsa_driver.c +++ b/linux/alsa/alsa_driver.c @@ -755,8 +755,8 @@ alsa_driver_set_parameters (alsa_driver_t *driver, if (c_period_size != driver->frames_per_cycle) { jack_error ("alsa_pcm: requested an interrupt every %" PRIu32 - " frames but got %uc frames for capture", - driver->frames_per_cycle, p_period_size); + " frames but got %u frames for capture", + driver->frames_per_cycle, c_period_size); return -1; } } |