From 3e137105bea8022548103c48d53fb7656dc47aa9 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Tue, 6 Jul 2021 09:30:04 +0200 Subject: [PATCH] Fix name in udp recv help --- std-udp-recv/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/std-udp-recv/src/main.cpp b/std-udp-recv/src/main.cpp index 8a69df9..3b8274e 100644 --- a/std-udp-recv/src/main.cpp +++ b/std-udp-recv/src/main.cpp @@ -20,10 +20,10 @@ int main (int argc, char *argv[]) { if (argc != 4) { cout << endl; - cout << "Usage: std_udp_recv [udp_recv_config_filename] [module_id] " + cout << "Usage: std_udp_recv [detector_json_filename] [module_id] " "[bit_depth]"; cout << endl; - cout << "\tudp_recv_config_filename: detector config file path." << endl; + cout << "\tdetector_json_filename: detector config file path." << endl; cout << "\tmodule_id: id of the module for this process." << endl; cout << "\tbit_depth: bit depth of the incoming udp packets." << endl; cout << endl;