Changeset 1380

Show
Ignore:
Timestamp:
03/25/08 16:21:35 (8 months ago)
Author:
aknudsen
Message:

Avoid warnings about unused labels

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • portaudio/trunk/src/hostapi/oss/pa_unix_oss.c

    r1349 r1380  
    15081508    } 
    15091509 
    1510 error: 
    15111510    return result; 
    15121511} 
     
    19801979    return (PaOssStreamComponent_BufferSize( stream->playback ) - delay) / PaOssStreamComponent_FrameSize( stream->playback ); 
    19811980 
    1982 error: 
    1983     return result; 
    1984 } 
    1985  
     1981/* Conditionally compile this to avoid warning about unused label */ 
     1982#ifdef SNDCTL_DSP_GETODELAY 
     1983error: 
     1984    return result; 
     1985#endif 
     1986} 
     1987