aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-07-04 00:00:39 -0700
committerChris Robinson <[email protected]>2014-07-04 00:00:39 -0700
commit17f79ea43eb0d901f616592f44ac2da5764c58e1 (patch)
treefa53cefee7f134a5a9873ff23dc91ea999f6ced8 /OpenAL32
parentfda5bc2bd2dac0c39f420a8de639c42d34d545a3 (diff)
Make a function static
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/alPreset.c4
1 files changed, 2 insertions, 2 deletions
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;