Skip to content

Commit 99b0921

Browse files
committed
Add whitespace between examples for better help2man result
1 parent 2459ed4 commit 99b0921

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

openaptxdec.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,11 @@ int main(int argc, char *argv[])
7070
fprintf(stderr, " --hd Decode from aptX HD\n");
7171
fprintf(stderr, "\n");
7272
fprintf(stderr, "Examples:\n");
73+
fprintf(stderr, "\n");
7374
fprintf(stderr, " %s < sample.aptx > sample.s24le\n", argv[0]);
75+
fprintf(stderr, "\n");
7476
fprintf(stderr, " %s --hd < sample.aptxhd > sample.s24le\n", argv[0]);
77+
fprintf(stderr, "\n");
7578
fprintf(stderr, " %s < sample.aptx | play -t raw -r 44.1k -L -e s -b 24 -c 2 -\n", argv[0]);
7679
return 1;
7780
} else if (strcmp(argv[i], "--hd") == 0) {

openaptxenc.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,11 @@ int main(int argc, char *argv[])
6262
fprintf(stderr, " --hd Encode to aptX HD\n");
6363
fprintf(stderr, "\n");
6464
fprintf(stderr, "Examples:\n");
65+
fprintf(stderr, "\n");
6566
fprintf(stderr, " %s < sample.s24le > sample.aptx\n", argv[0]);
67+
fprintf(stderr, "\n");
6668
fprintf(stderr, " %s --hd < sample.s24le > sample.aptxhd\n", argv[0]);
69+
fprintf(stderr, "\n");
6770
fprintf(stderr, " sox sample.wav -t raw -r 44.1k -L -e s -b 24 -c 2 - | %s > sample.aptx\n", argv[0]);
6871
return 1;
6972
} else if (strcmp(argv[i], "--hd") == 0) {

0 commit comments

Comments
 (0)