Changeset 1831:dc25362e22ae in roaraudio


Ignore:
Timestamp:
05/23/09 01:36:55 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

use basic vio calls to access file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/driver_dmx.c

    r1830 r1831  
    5656  return -1; 
    5757 
    58  if ( lseek(roar_vio_get_fh(vio), 0, SEEK_SET) == (off_t)-1 ) 
     58 if ( roar_vio_basic_lseek(vio, 0, SEEK_SET) == (off_t)-1 ) 
    5959  return -1; 
    6060 
    61  return write(roar_vio_get_fh(vio), buf, count); 
     61 return roar_vio_basic_write(vio, buf, count); 
    6262} 
    6363 
Note: See TracChangeset for help on using the changeset viewer.