From f5d41edfe327e71d3836a14b99f20b0f8ef51161 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 13 Sep 2021 15:01:43 +0200 Subject: [PATCH] fpga: fix compilation errors --- lib/nodes/fpga.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/nodes/fpga.cpp b/lib/nodes/fpga.cpp index e90ae60dd..b3fcc3c82 100644 --- a/lib/nodes/fpga.cpp +++ b/lib/nodes/fpga.cpp @@ -332,8 +332,8 @@ static void register_plugin() { p.description = "Communicate with VILLASfpga Xilinx FPGA boards"; p.vectorize = 1; p.size = sizeof(struct fpga); - p.start = fpga_type_start; - p.stop = fpga_type_stop; + p.type.start = fpga_type_start; + p.type.stop = fpga_type_stop; p.init = fpga_init; p.destroy = fpga_destroy; p.prepare = fpga_prepare;