Changeset 5162:85c55ccd12a9 in roaraudio for roard/hwmixer_dstr.c


Ignore:
Timestamp:
10/16/11 20:12:40 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

fixed some compiler warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/hwmixer_dstr.c

    r4752 r5162  
    2727 
    2828#ifndef ROAR_WITHOUT_DCOMP_MIXER 
     29 
     30/* 
     31 * This driver ignores errors on seeks: 
     32 * The writes ensure that if the seek back to begin of file 
     33 * does not work the records keep seperate and parsable. 
     34 * So it basically enters some kind of streaming mode. 
     35 */ 
    2936 
    3037//#define TEST_HWMIXER_SUBSTREAMS 
     
    6370 
    6471 roar_vio_printf(vio, "No data yet.\n"); 
    65  roar_vio_lseek(vio, 0, SEEK_SET); 
     72 _LIBROAR_IGNORE_RET(roar_vio_lseek(vio, 0, SEEK_SET)); 
    6673 roar_vio_sync(vio); 
    6774 
     
    113120 } 
    114121 
    115  roar_vio_lseek(vio, 0, SEEK_SET); 
     122 _LIBROAR_IGNORE_RET(roar_vio_lseek(vio, 0, SEEK_SET)); 
    116123 roar_vio_sync(vio); 
    117124 return 0; 
Note: See TracChangeset for help on using the changeset viewer.