]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
libsndfile remove accidental line endings
authorJeff Lenk <jeff@jefflenk.com>
Sun, 23 Feb 2014 00:44:40 +0000 (18:44 -0600)
committerJeff Lenk <jeff@jefflenk.com>
Sun, 23 Feb 2014 00:45:09 +0000 (18:45 -0600)
libs/libsndfile/src/alac.c

index 6b35dd8f403ae8fc803e8fd19375a9be77118495..747e032769ff994ec6c92387e6c08e45634f0461 100644 (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] ;\r
-#else\r
+       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