aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Holberton <tay10r@protonmail.com>2019-05-23 14:08:16 -0400
committerGitHub <noreply@github.com>2019-05-23 14:08:16 -0400
commit046f98c7caa5457edd520ad7ebbe8b4f394d2837 (patch)
tree0105d7fa956e39ed120606cb0da6be8ff9d61563
parent809054250a32b6b1f0c416bf820ef807b98b740f (diff)
parenta522ffdc7d43a5bfc94d7cfbca8b93afc4798bc1 (diff)
Merge pull request #134 from jcromero/patch-1
Fix typo in -D and -d options descriptions
-rw-r--r--utils/tinyplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/tinyplay.c b/utils/tinyplay.c
index 2e5f627..e3c7b0d 100644
--- a/utils/tinyplay.c
+++ b/utils/tinyplay.c
@@ -301,8 +301,8 @@ void print_usage(const char *argv0)
{
fprintf(stderr, "usage: %s file.wav [options]\n", argv0);
fprintf(stderr, "options:\n");
- fprintf(stderr, "-D | --card <card number> The device to receive the audio\n");
- fprintf(stderr, "-d | --device <device number> The card to receive the audio\n");
+ fprintf(stderr, "-D | --card <card number> The card to receive the audio\n");
+ fprintf(stderr, "-d | --device <device number> The device to receive the audio\n");
fprintf(stderr, "-p | --period-size <size> The size of the PCM's period\n");
fprintf(stderr, "-n | --period-count <count> The number of PCM periods\n");
fprintf(stderr, "-i | --file-type <file-type > The type of file to read (raw or wav)\n");