fix indent

This commit is contained in:
nu774 2019-09-27 21:05:12 +09:00
parent 353e4fcd7a
commit c0919b049a
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ pcm_reader_t *pcm_open_sint16_converter(pcm_reader_t *reader)
pcm_sint16_converter_t *self = 0; pcm_sint16_converter_t *self = 0;
pcm_sample_description_t *fmt; pcm_sample_description_t *fmt;
assert((SAMPLE_BITS>>3) == sizeof(INT_PCM)); assert((SAMPLE_BITS>>3) == sizeof(INT_PCM));
if ((self = calloc(1, sizeof(pcm_sint16_converter_t))) == 0) if ((self = calloc(1, sizeof(pcm_sint16_converter_t))) == 0)
return 0; return 0;