Module: wine
Branch: master
Commit: 54ae26409ef1356b028c173d360221cfed092781
URL: https://gitlab.winehq.org/wine/wine/-/commit/54ae26409ef1356b028c173d360221…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Nov 21 11:15:40 2023 +0100
fluidsynth: Use a signed atomic type to avoid warnings.
---
libs/fluidsynth/src/synth/fluid_synth.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libs/fluidsynth/src/synth/fluid_synth.h b/libs/fluidsynth/src/synth/fluid_synth.h
index cb838e92462..4179113c624 100644
--- a/libs/fluidsynth/src/synth/fluid_synth.h
+++ b/libs/fluidsynth/src/synth/fluid_synth.h
@@ -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) */