Fix missing closing brace in Monitor::ONVIF::start function

Added the missing closing brace for the else block (success path) that starts
at line 261. The function now compiles correctly with proper brace matching.

Co-authored-by: connortechnology <925519+connortechnology@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-19 15:08:33 +00:00
parent b71bc6a36b
commit c3940491d6

View File

@@ -315,6 +315,7 @@ void Monitor::ONVIF::start() {
healthy = false; healthy = false;
} // end renew } // end renew
} }
} // end else (success block)
#else #else
Error("zmc not compiled with GSOAP. ONVIF support not built in!"); Error("zmc not compiled with GSOAP. ONVIF support not built in!");
#endif #endif