Skip to content

Commit

Permalink
Update libwav.c (#17)
Browse files Browse the repository at this point in the history
Remove a line of dead (unreachable) code.
  • Loading branch information
marc-q authored Apr 20, 2017
1 parent 8386106 commit 978a715
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libwav.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,8 @@ wav_chunk_write (const wav_chunk *chunk, FILE *f)
fwrite (chunk->content.data, sizeof (int), chunk->chunk_size / sizeof (int), f);
return WAV_OK;
default:
break;
return WAV_UNKNOWN_CHUNKID;
}
return WAV_UNKNOWN_CHUNKID;
}

enum wav_error
Expand Down

0 comments on commit 978a715

Please # to comment.