]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Quiet CI error on macOS
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sun, 29 Aug 2021 16:23:49 +0000 (11:23 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sun, 29 Aug 2021 16:23:49 +0000 (11:23 -0500)
src/lib/util/machine.h

index 553d2935b4e60b78094820d3d22389118c42ce3d..2aebc0e75c54b66970a6dba6d0d557057a829b86 100644 (file)
@@ -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