From: Arran Cudbard-Bell Date: Sun, 29 Aug 2021 16:23:49 +0000 (-0500) Subject: Quiet CI error on macOS X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e34675bba385c0e00a93ee115e92805b4875331a;p=thirdparty%2Ffreeradius-server.git Quiet CI error on macOS --- 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