From 7fe49a78d264b67905f3b9d38cc8960ebba7d45f Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 15 May 2018 23:47:47 +0200 Subject: [PATCH] firmware/runtime/session: fix compilation when no rtio core --- artiq/firmware/runtime/session.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/firmware/runtime/session.rs b/artiq/firmware/runtime/session.rs index e1380c125..cbef8d7d8 100644 --- a/artiq/firmware/runtime/session.rs +++ b/artiq/firmware/runtime/session.rs @@ -295,7 +295,7 @@ fn process_host_message(io: &Io, } #[cfg(not(has_rtio_core))] - host_write(stream, host::Reply::ClockSwitchFailed) + host_write(stream, host::Reply::ClockSwitchFailed)? } host::Request::LoadKernel(kernel) =>