From 19eb0beb6079b80aba56b98d99779d7b50e92f7f Mon Sep 17 00:00:00 2001 From: Wojciech Kaczmarski <44336093+sp5wwp@users.noreply.github.com> Date: Sun, 10 Sep 2023 18:36:33 +0200 Subject: [PATCH] added missing newline characters --- SP5WWP/m17-packet/m17-packet-encode.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/SP5WWP/m17-packet/m17-packet-encode.c b/SP5WWP/m17-packet/m17-packet-encode.c index 2bd8a82..e1f4a30 100644 --- a/SP5WWP/m17-packet/m17-packet-encode.c +++ b/SP5WWP/m17-packet/m17-packet-encode.c @@ -366,14 +366,14 @@ int main(int argc, char* argv[]) else { fprintf(stderr, "Not enough params. Usage:\n"); - fprintf(stderr, "-S - source callsign (uppercase alphanumeric string) max. 9 characters,"); - fprintf(stderr, "-D - destination callsign (uppercase alphanumeric string) or ALL for boradcast,"); - fprintf(stderr, "-C - Channel Access Number (0..15, default - 10),"); - fprintf(stderr, "-n - number of bytes (1 to 798),"); - fprintf(stderr, "-o - output file path/name,"); + fprintf(stderr, "-S - source callsign (uppercase alphanumeric string) max. 9 characters,\n"); + fprintf(stderr, "-D - destination callsign (uppercase alphanumeric string) or ALL for boradcast,\n"); + fprintf(stderr, "-C - Channel Access Number (0..15, default - 10),\n"); + fprintf(stderr, "-n - number of bytes (1 to 798),\n"); + fprintf(stderr, "-o - output file path/name,\n"); fprintf(stderr, "Output formats:\n"); - //fprintf(stderr, "-x - binary output (M17 baseband as a packed bitstream),"); - fprintf(stderr, "-r - raw audio output (single channel, signed 16-bit LE, +7168 for the +1.0 symbol, 10 samples per symbol),"); + //fprintf(stderr, "-x - binary output (M17 baseband as a packed bitstream),\n"); + fprintf(stderr, "-r - raw audio output (single channel, signed 16-bit LE, +7168 for the +1.0 symbol, 10 samples per symbol),\n"); fprintf(stderr, "-s - signed 16-bit LE symbols output\n"); return -1; }