Skip to content

Commit

Permalink
fluidsynth: Use a signed atomic type to avoid warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
julliard committed Nov 21, 2023
1 parent 9011462 commit 54ae264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/fluidsynth/src/synth/fluid_synth.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ struct _fluid_synth_t
int effects_channels; /**< the number of effects channels (>= 2) */
int effects_groups; /**< the number of effects units (>= 1) */
int state; /**< the synthesizer state */
fluid_atomic_uint_t ticks_since_start; /**< the number of audio samples since the start */
fluid_atomic_int_t ticks_since_start; /**< the number of audio samples since the start */
unsigned int start; /**< the start in msec, as returned by system clock */
fluid_overflow_prio_t overflow; /**< parameters for overflow priority (aka voice-stealing) */

Expand Down

0 comments on commit 54ae264

Please sign in to comment.