libsndfile remove accidental line endings

This commit is contained in:
Jeff Lenk 2014-02-22 18:44:40 -06:00
parent ae1016107d
commit 2a3a1aae44

View File

@ -428,8 +428,8 @@ alac_encode_block (SF_PRIVATE * psf, ALAC_PRIVATE *plac)
{ ALAC_ENCODER *penc = &plac->encoder ;
uint32_t num_bytes = 0 ;
#ifndef _MSC_VER
uint8_t byte_buffer [psf->sf.channels * ALAC_BYTE_BUFFER_SIZE] ;
#else
uint8_t byte_buffer [psf->sf.channels * ALAC_BYTE_BUFFER_SIZE] ;
#else
uint8_t* byte_buffer = (uint8_t*)_alloca (psf->sf.channels * ALAC_BYTE_BUFFER_SIZE) ;
#endif