summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example-clients/alsa_in.c2
-rw-r--r--example-clients/alsa_out.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/example-clients/alsa_in.c b/example-clients/alsa_in.c
index a65a4ea2..8836b12d 100644
--- a/example-clients/alsa_in.c
+++ b/example-clients/alsa_in.c
@@ -185,7 +185,7 @@ static int set_hwparams(snd_pcm_t *handle, snd_pcm_hw_params_t *params, snd_pcm_
return err;
}
if (rchannels != channels) {
- printf("WARNING: chennel count does not match (requested %d got %d)\n", channels, rchannels);
+ printf("WARNING: channel count does not match (requested %d got %d)\n", channels, rchannels);
num_channels = rchannels;
}
/* set the stream rate */
diff --git a/example-clients/alsa_out.c b/example-clients/alsa_out.c
index a7b74f47..94955db9 100644
--- a/example-clients/alsa_out.c
+++ b/example-clients/alsa_out.c
@@ -185,7 +185,7 @@ static int set_hwparams(snd_pcm_t *handle, snd_pcm_hw_params_t *params, snd_pcm_
return err;
}
if (rchannels != channels) {
- printf("WARNING: chennel count does not match (requested %d got %d)\n", channels, rchannels);
+ printf("WARNING: channel count does not match (requested %d got %d)\n", channels, rchannels);
num_channels = rchannels;
}
/* set the stream rate */