diff options
author | Chris Robinson <[email protected]> | 2011-06-12 16:30:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-06-12 16:30:51 -0700 |
commit | ccffb7e380a6095c1b0957cac449cfbe6463215b (patch) | |
tree | a7540ff5fe1f75d48d9bbfab14d9641e8e803984 /Alc | |
parent | 39088b203552219d5e481ceac6606db530bc2509 (diff) |
Add missing semicolon
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/opensl.c | 2 |
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; } |