From d822600c68c07348a27ccfa5feec769f7cce7880 Mon Sep 17 00:00:00 2001 From: Erik Frojdh Date: Wed, 12 Aug 2020 16:57:59 +0200 Subject: [PATCH] fix for cmd free help --- slsDetectorSoftware/src/CmdProxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slsDetectorSoftware/src/CmdProxy.cpp b/slsDetectorSoftware/src/CmdProxy.cpp index 52a754ee2..61430bdef 100644 --- a/slsDetectorSoftware/src/CmdProxy.cpp +++ b/slsDetectorSoftware/src/CmdProxy.cpp @@ -205,7 +205,7 @@ std::string CmdProxy::Acquire(int action) { std::string CmdProxy::free(int action) { // This function is purely for help, actual functionality is in the caller - return "\n\tFree detector shared memory\n"; + return "free\n\tFree detector shared memory\n"; } std::string CmdProxy::FirmwareVersion(int action) {