Corrected n_arguments parameter in main scripts

This commit is contained in:
2021-07-07 13:55:18 +02:00
parent d63e8db83e
commit 01e5cb9202
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ using namespace live_writer_config;
int main (int argc, char *argv[])
{
if (argc != 2) {
if (argc != 3) {
cout << endl;
cout << "Usage: std-det-writer [detector_json_filename]"
" [bit_depth]" << endl;
+1 -1
View File
@@ -13,7 +13,7 @@ using namespace buffer_config;
int main (int argc, char *argv[])
{
if (argc != 3) {
if (argc != 4) {
cout << endl;
cout << "Usage: std_stream_send [detector_json_filename]"
" [bit_depth] [stream_address]" << endl;