Revision: 39213
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39213
Author:   nexyon
Date:     2011-08-09 14:34:42 +0000 (Tue, 09 Aug 2011)
Log Message:
-----------
Fix for last commit: MSVC dislikes ;;

Modified Paths:
--------------
    branches/soc-2011-pepper/source/blender/blenkernel/intern/sound.c

Modified: branches/soc-2011-pepper/source/blender/blenkernel/intern/sound.c
===================================================================
--- branches/soc-2011-pepper/source/blender/blenkernel/intern/sound.c   
2011-08-09 14:16:22 UTC (rev 39212)
+++ branches/soc-2011-pepper/source/blender/blenkernel/intern/sound.c   
2011-08-09 14:34:42 UTC (rev 39213)
@@ -630,7 +630,7 @@
 
        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");

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to