Minor syntax cleanup for readability

This commit is contained in:
Andrew Kelley
2009-07-15 05:12:45 -07:00
parent e53ea570b0
commit b99d79b4d2

View File

@@ -89,11 +89,11 @@ void audioFileWave::writeBuffer( const surroundSampleFrame * _ab,
{
if( depth() == 16 )
{
intSampleFrameA * buf = (intSampleFrameA *)
alignedMalloc(
sizeof( intSampleFrameA ) * _frames );
intSampleFrameA * buf = (intSampleFrameA *) alignedMalloc(
sizeof( intSampleFrameA ) * _frames );
alignedConvertToS16( _ab, buf, _frames, _master_gain,
!isLittleEndian() );
!isLittleEndian() );
sf_writef_short( m_sf, (int_sample_t *) buf, _frames );
alignedFree( buf );