From 17f79ea43eb0d901f616592f44ac2da5764c58e1 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 4 Jul 2014 00:00:39 -0700 Subject: Make a function static --- OpenAL32/alPreset.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenAL32') diff --git a/OpenAL32/alPreset.c b/OpenAL32/alPreset.c index a715c946..1934ba05 100644 --- a/OpenAL32/alPreset.c +++ b/OpenAL32/alPreset.c @@ -16,7 +16,7 @@ extern inline struct ALsfpreset *LookupPreset(ALCdevice *device, ALuint id); extern inline struct ALsfpreset *RemovePreset(ALCdevice *device, ALuint id); static void ALsfpreset_Construct(ALsfpreset *self); -void ALsfpreset_Destruct(ALsfpreset *self); +static void ALsfpreset_Destruct(ALsfpreset *self); AL_API void AL_APIENTRY alGenPresetsSOFT(ALsizei n, ALuint *ids) @@ -304,7 +304,7 @@ static void ALsfpreset_Construct(ALsfpreset *self) self->id = 0; } -void ALsfpreset_Destruct(ALsfpreset *self) +static void ALsfpreset_Destruct(ALsfpreset *self) { ALsizei i; -- cgit v1.2.3