Remove dead assignments (#980)

The result of `success` is actually never used. Either we should check
for it and return or remove it. I assume just checking the last one is
okay.
This commit is contained in:
Michael Vetter 2019-10-03 17:06:08 +02:00 committed by Ray
parent df84f93938
commit 047f093503

View file

@ -1870,9 +1870,9 @@ static int SaveWAV(Wave wave, const char *fileName)
waveData.subChunkID[3] = 'a';
waveData.subChunkSize = dataSize;
success = fwrite(&riffHeader, sizeof(RiffHeader), 1, wavFile);
success = fwrite(&waveFormat, sizeof(WaveFormat), 1, wavFile);
success = fwrite(&waveData, sizeof(WaveData), 1, wavFile);
fwrite(&riffHeader, sizeof(RiffHeader), 1, wavFile);
fwrite(&waveFormat, sizeof(WaveFormat), 1, wavFile);
fwrite(&waveData, sizeof(WaveData), 1, wavFile);
success = fwrite(wave.data, dataSize, 1, wavFile);