aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorrmens <r.mens@me.com>2025-08-31 21:31:42 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2025-09-04 11:47:34 +0200
commitcf8f54247dba07e990ec5fba0e75b5771e7e922e (patch)
tree42c0cf337b284951f5d081291f2b21807f2b861e /src
parenta24156bf676fc6f82b30cdb21b28c7913bce8d22 (diff)
downloadODR-PadEnc-cf8f54247dba07e990ec5fba0e75b5771e7e922e.tar.gz
ODR-PadEnc-cf8f54247dba07e990ec5fba0e75b5771e7e922e.tar.bz2
ODR-PadEnc-cf8f54247dba07e990ec5fba0e75b5771e7e922e.zip
fix: correct string formatting in usage() function
Fixed improper multi-line string literal formatting that caused compilation errors.
Diffstat (limited to 'src')
-rw-r--r--src/odr-padenc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/odr-padenc.cpp b/src/odr-padenc.cpp
index 7c2017e..5bba914 100644
--- a/src/odr-padenc.cpp
+++ b/src/odr-padenc.cpp
@@ -61,9 +61,9 @@ static void usage(const char* name) {
" -s, --sleep=DUR Wait DUR seconds between each slide. If set to 0, the next slide is inserted just after the previous one\n"
" has been transmitted. This is useful e.g. for stations that transmit just a logo slide.\n"
" Default: %d\n"
- " -o, --output=IDENTIFIER Socket to communicate with audio encoder.
- If IDENTIFIER contains '/', it's used as a full path.
- Otherwise, /tmp/ is prepended for backward compatibility\n"
+ " -o, --output=IDENTIFIER Socket to communicate with audio encoder.\n"
+ " If IDENTIFIER contains '/', it's used as a full path.\n"
+ " Otherwise, /tmp/ is prepended for backward compatibility\n"
" --dump-current-slide=F1 Write the slide currently being transmitted to the file F1\n"
" --dump-completed-slide=F2 Once the slide is transmitted, move the file from F1 to F2\n"
" -t, --dls=FILENAME FIFO or file to read DLS text from.\n"