From c6ff539ac0a388ad6bacab96551feb106d7eee83 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Thu, 3 Jul 2014 05:35:55 +1000 Subject: [PATCH] src/flac/main.c : Improve raw format help text help. The --endian and --sign options aren't just for raw input, but also for raw output. Patch-from: lvqcl --- src/flac/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flac/main.c b/src/flac/main.c index 28f5da61..e70f81fe 100644 --- a/src/flac/main.c +++ b/src/flac/main.c @@ -1291,7 +1291,7 @@ void show_help(void) printf(" --force-aiff-format Force decoding to AIFF format\n"); printf(" --force-rf64-format Force decoding to RF64 format\n"); printf(" --force-wave64-format Force decoding to Wave64 format\n"); - printf("format options for raw input:\n"); + printf("raw format options:\n"); printf(" --endian={big|little} Set byte order for samples\n"); printf(" --channels=# Number of channels\n"); printf(" --bps=# Number of bits per sample\n"); @@ -1630,7 +1630,7 @@ void show_explain(void) printf(" set by -o) ends with .w64; this option\n"); printf(" has no effect when encoding since input Wave64 is\n"); printf(" auto-detected.\n"); - printf("format options for raw input:\n"); + printf("raw format options:\n"); printf(" --endian={big|little} Set byte order for samples\n"); printf(" --channels=# Number of channels\n"); printf(" --bps=# Number of bits per sample\n");