fix my union-resolve of shim main.cpp: the probe_config branch was missing its close, breaking the cross-build

This commit is contained in:
alex 2026-09-08 15:33:56 -04:00
parent cc77de3429
commit 1cc3b1348d

View file

@ -90,7 +90,7 @@ Config ReadConfig() {
if (shim::hooks::probe_config(p, val, &probe_n)) {
Log("config: %s=%s -> %u lane-H entry probes", p, val,
static_cast<unsigned>(probe_n));
if (shim::hooks::watch_apply_config(p, val, &err)) {
} else if (shim::hooks::watch_apply_config(p, val, &err)) {
if (!err.empty()) Log("config: %s=%s rejected (%s)", p, val, err.c_str());
else Log("config: %s=%s", p, val);
} else if (shim::fpu::apply_config(p, val, &err)) {