Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2011-08-09 18:34:42 +0400
committerJoerg Mueller <nexyon@gmail.com>2011-08-09 18:34:42 +0400
commit8655385c9edb5e61416018406f8a3fe3b8e7d141 (patch)
tree8af386ad95b6e42c70b0052ebd72200bc81edddd /source/blender/blenkernel/intern/sound.c
parenta672ab5e737202bede956a88357a96cf2728df15 (diff)
Fix for last commit: MSVC dislikes ;;
Diffstat (limited to 'source/blender/blenkernel/intern/sound.c')
-rw-r--r--source/blender/blenkernel/intern/sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index 888c719a304..80cb2072357 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -630,7 +630,7 @@ void sound_read_waveform(struct bSound* sound)
if(info.length > 0)
{
- SoundWaveform* waveform = MEM_mallocN(sizeof(SoundWaveform), "SoundWaveform");;
+ SoundWaveform* waveform = MEM_mallocN(sizeof(SoundWaveform), "SoundWaveform");
int length = info.length * SOUND_WAVE_SAMPLES_PER_SECOND;
waveform->data = MEM_mallocN(length * sizeof(float) * 3, "SoundWaveform.samples");