1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Minor warning fix

This commit is contained in:
jules 2015-08-03 19:32:17 +01:00
parent b57e8e3db4
commit e3f9053ffa

View file

@ -137,7 +137,7 @@ public:
MemoryOutputStream m;
for (int i = r.nextInt (400); --i >= 0;)
m.writeByte (r.nextInt (256));
m.writeByte ((char) r.nextInt (256));
return m.getMemoryBlock();
}