mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
Fixing help switch if block
Really stupid error, again.
This commit is contained in:
parent
058f9702ba
commit
55a8aad97d
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ int main(int argc, char *argv[])
|
|||
|
||||
initLogger();
|
||||
|
||||
if (argc < 6 || strcmp(argv[1], "-h") || strcmp(argv[1], "--help") == 0)
|
||||
if (argc < 6 || strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--help") == 0)
|
||||
{
|
||||
logger->info("Usage : " + std::string(argv[0]) + " [downlink] [input_level] [input_file] [output_level] [output_file_or_directory] [additional options as required]");
|
||||
logger->info("Extra options : -samplerate [bits_per_second] -baseband_format [f32/i16/i8/w8] -dc_block -iq_swap");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue