From 763fa2288b267b3dd56e85bfddbc8e61d9754fa5 Mon Sep 17 00:00:00 2001 From: Maxime Gervais Date: Mon, 17 Jun 2024 15:16:25 +0200 Subject: [PATCH] Fix missing return code Signed-off-by: Maxime Gervais --- Source/Common/ProcessFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Common/ProcessFile.cpp b/Source/Common/ProcessFile.cpp index fe4300b7..a081754c 100644 --- a/Source/Common/ProcessFile.cpp +++ b/Source/Common/ProcessFile.cpp @@ -322,7 +322,7 @@ return_value file::Parse(const String& FileName) if (Device_Command == 5 && !Count) cerr << "No devices found." << '\n'; - return; + return ReturnValue_OK; } #endif Capture = nullptr;