From e34675bba385c0e00a93ee115e92805b4875331a Mon Sep 17 00:00:00 2001 From: Arran Cudbard-Bell Date: Sun, 29 Aug 2021 11:23:49 -0500 Subject: [PATCH] Quiet CI error on macOS --- src/lib/util/machine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/machine.h b/src/lib/util/machine.h index 553d2935b4e..2aebc0e75c5 100644 --- a/src/lib/util/machine.h +++ b/src/lib/util/machine.h @@ -44,7 +44,7 @@ struct fr_machine_state_s { fr_machine_process_t process; //!< run this to process the current state fr_machine_func_t exit; //!< run this when exiting the state fr_machine_signal_t signal; //!< to send async signals to the state machine - bool allowed[]; //!< allow outbound transitions + bool *allowed; //!< allow outbound transitions }; #define ALLOW(_x) .allowed[_x] = true -- 2.47.3