Skip to content

Commit

Permalink
Fix 'anonymous non-C-compatible type given name for linkage purposes …
Browse files Browse the repository at this point in the history
…by typedef declaration'
  • Loading branch information
derselbst committed Oct 12, 2024
1 parent 31a56d8 commit e5e4822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/drivers/fluid_oboe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class OboeAudioStreamErrorCallback;
* This structure should not be accessed directly. Use audio port
* functions instead.
*/
typedef struct
struct fluid_oboe_audio_driver_t
{
fluid_audio_driver_t driver;
fluid_synth_t *synth = nullptr;
Expand All @@ -62,7 +62,7 @@ typedef struct
int performance_mode; // 0: None, 1: PowerSaving, 2: LowLatency
oboe::SampleRateConversionQuality srate_conversion_quality;
int error_recovery_mode; // 0: Reconnect, 1: Stop
} fluid_oboe_audio_driver_t;
};


class OboeAudioStreamCallback : public AudioStreamCallback
Expand Down

0 comments on commit e5e4822

Please sign in to comment.