Show
Ignore:
Timestamp:
02/21/08 00:31:26 (10 months ago)
Author:
rossb
Message:

cosmetic cleanups to bracket placement in pa_asio.c

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • portaudio/branches/v19-devel/src/hostapi/asio/pa_asio.cpp

    r1344 r1348  
    17171717    /* unless we move to using lower level ASIO calls, we can only have 
    17181718        one device open at a time */ 
    1719     if( asioHostApi->openAsioDeviceIndex != paNoDevice ){ 
     1719    if( asioHostApi->openAsioDeviceIndex != paNoDevice ) 
     1720    { 
    17201721        PA_DEBUG(("OpenStream paDeviceUnavailable\n")); 
    17211722        return paDeviceUnavailable; 
     
    17261727        /* full duplex ASIO stream must use the same device for input and output */ 
    17271728 
    1728         if( inputParameters->device != outputParameters->device ){ 
     1729        if( inputParameters->device != outputParameters->device ) 
     1730        { 
    17291731            PA_DEBUG(("OpenStream paBadIODeviceCombination\n")); 
    17301732            return paBadIODeviceCombination;