From e77de8b12a01bc9385ec0b7b528274b799bac81e Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 23 Aug 2016 23:57:55 -0700 Subject: [PATCH] Make a function definition static --- OpenAL32/alSource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 678654df..f5941729 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -3063,7 +3063,7 @@ ALvoid SetSourceState(ALsource *Source, ALCcontext *Context, ALenum state) * samples. The offset is relative to the start of the queue (not the start of * the current buffer). */ -ALint64 GetSourceSampleOffset(ALsource *Source, ALCdevice *device, ALuint64 *clocktime) +static ALint64 GetSourceSampleOffset(ALsource *Source, ALCdevice *device, ALuint64 *clocktime) { const ALbufferlistitem *BufferList; const ALbufferlistitem *Current;