Skip to content

Commit

Permalink
Merge pull request micro-manager#485 from micro-manager/fix-asi-tiger
Browse files Browse the repository at this point in the history
ASITiger: fix missing semicolon
  • Loading branch information
marktsuchida authored Aug 22, 2024
2 parents f523511 + 01a4432 commit e153aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DeviceAdapters/ASITiger/ASIScanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) );
Expand Down

0 comments on commit e153aeb

Please sign in to comment.