Changeset 2669:3b6eb870e562 in roaraudio for roard/container_framework.c


Ignore:
Timestamp:
09/12/09 22:46:02 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

deleted struct cont_fw_child

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/container_framework.c

    r2668 r2669  
    116116 
    117117 if ( inst->parent->ccb.read != NULL ) 
    118   return inst->parent->ccb.read(inst->parent, inst->inst, buf, count); 
     118  return inst->parent->ccb.read(inst->parent, inst, buf, count); 
    119119 
    120120 return -1; 
     
    125125 
    126126 if ( inst->parent->ccb.write != NULL ) 
    127   return inst->parent->ccb.write(inst->parent, inst->inst, buf, count); 
     127  return inst->parent->ccb.write(inst->parent, inst, buf, count); 
    128128 
    129129 return -1; 
     
    137137 
    138138 if ( inst->parent->ccb.flush != NULL ) 
    139   return inst->parent->ccb.flush(inst->parent, inst->inst); 
     139  return inst->parent->ccb.flush(inst->parent, inst); 
    140140 
    141141 return 0; 
     
    152152 
    153153 if ( inst->parent->ccb.close != NULL ) 
    154   return inst->parent->ccb.close(inst->parent, inst->inst); 
     154  return inst->parent->ccb.close(inst->parent, inst); 
    155155 
    156156 return  r; 
Note: See TracChangeset for help on using the changeset viewer.