Warning fix as in bug #188

This commit is contained in:
bart@bartbes.ath.cx
2010-04-03 12:27:35 +02:00
parent 09f9fe62b6
commit f74b79e39a
+1 -1
View File
@@ -38,7 +38,7 @@ namespace lullaby
process_single(); process_single();
seek(0); seek(0);
bufferSize = 256 * getBits() * getChannels() * 2; bufferSize = 256 * getBits() * getChannels() * 2;
delete[] buffer; delete[] (char*) buffer;
buffer = new char[bufferSize]; buffer = new char[bufferSize];
} }