aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-12 16:30:51 -0700
committerChris Robinson <[email protected]>2011-06-12 16:30:51 -0700
commitccffb7e380a6095c1b0957cac449cfbe6463215b (patch)
treea7540ff5fe1f75d48d9bbfab14d9641e8e803984
parent39088b203552219d5e481ceac6606db530bc2509 (diff)
Add missing semicolon
-rw-r--r--Alc/opensl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/opensl.c b/Alc/opensl.c
index e2c06f19..a8ab57d4 100644
--- a/Alc/opensl.c
+++ b/Alc/opensl.c
@@ -266,7 +266,7 @@ static ALCboolean opensl_reset_playback(ALCdevice *Device)
free(data->buffer);
data->buffer = NULL;
- data->bufferSize = 0
+ data->bufferSize = 0;
return ALC_FALSE;
}