Ignore:
Timestamp:
Jul 22, 2010, 8:20:48 PM (15 years ago)
Author:
David Azarewicz
Message:

debug statement cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • OCO/branches/DAZ/drv16/waverec.cpp

    r483 r524  
    4545        if(OSS16_WaveOpen(ulDevice, ulStreamType, ulSysFileNum, pStreamId) != OSSERR_SUCCESS)
    4646        {
    47             dprintf(("OSS16_WaveOpen failed!!"));
     47            rprintf(("OSS16_WaveOpen failed!!"));
    4848            DebugInt3();
    4949            StreamId = 0;
     
    139139    hwparam.ulDataType      = QueryOSSDataFormat(OPERATION_RECORD, pConfigInfo->ulDataType, pConfigInfo->ulHwBitsPerSample);
    140140    if(OSS16_WaveSetFormat(StreamId, &hwparam) != OSSERR_SUCCESS) {
    141                 dprintf(("WAVEREC::ConfigDev: WaveSetFormat failed"));
     141                rprintf(("WAVEREC::ConfigDev: WaveSetFormat failed"));
    142142        DebugInt3();
    143143        return FALSE;
     
    152152                       ULONG FAR *pulBytesTransferred)
    153153{
    154 #ifdef DEBUG
    155154    //dprintf(("WAVEREC::Transfer %lx bytes", ulBytesToTransfer));
    156 #endif
    157155    if(pConfigInfo->usConversion == CONVERT_NONE)
    158156    {
     
    308306    if(OSS16_WaveGetHwPtr(StreamId, &space) != OSSERR_SUCCESS) {
    309307        *pulHwPtr = 0;
    310         #ifdef DEBUG
    311         dprintf(("OSS16_WAVEREC::WaveGetHwPtr: Failed"));
    312         #endif /* DEBUG */
     308        rprintf(("OSS16_WAVEREC::WaveGetHwPtr: Failed"));
    313309        return FALSE;
    314310    }
Note: See TracChangeset for help on using the changeset viewer.