From cbf85540e077b35a6cc9c31eede1fef2e84de5b2 Mon Sep 17 00:00:00 2001 From: Matthew Sheby <44249925+msheby@users.noreply.github.com> Date: Tue, 19 Dec 2023 20:28:49 -0800 Subject: [PATCH] fix issue #21 --- src/asdcp-test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asdcp-test.cpp b/src/asdcp-test.cpp index 34c8fcf0..54db0fe9 100755 --- a/src/asdcp-test.cpp +++ b/src/asdcp-test.cpp @@ -508,7 +508,7 @@ class CommandOptions return; } - if ( file_count >= MAX_IN_FILES ) + if ( file_count > MAX_IN_FILES ) { fprintf(stderr, "Filename lists exceeds maximum list size: %u\n", MAX_IN_FILES); return;