From 01a44322148af34a8555956755112d1cde0a0ecb Mon Sep 17 00:00:00 2001 From: "Mark A. Tsuchida" Date: Thu, 22 Aug 2024 11:06:40 -0500 Subject: [PATCH] ASITiger: fix missing semicolon --- DeviceAdapters/ASITiger/ASIScanner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DeviceAdapters/ASITiger/ASIScanner.cpp b/DeviceAdapters/ASITiger/ASIScanner.cpp index c6f2f3445..300c35ae9 100644 --- a/DeviceAdapters/ASITiger/ASIScanner.cpp +++ b/DeviceAdapters/ASITiger/ASIScanner.cpp @@ -3304,7 +3304,7 @@ int CScanner::OnSPIMSmoothSliceEnable(MM::PropertyBase* pProp, MM::ActionType eA if (eAct == MM::BeforeGet) { if (!refreshProps_ && initialized_) - return DEVICE_OK + return DEVICE_OK; command << addressChar_ << "NR Z?"; RETURN_ON_MM_ERROR( hub_->QueryCommandVerify(command.str(), ":A Z=")); RETURN_ON_MM_ERROR ( hub_->ParseAnswerAfterEquals(tmp) );