Changeset 1660:99bfd21f00ef in roaraudio for libroaryiff/connection.c


Ignore:
Timestamp:
05/08/09 16:56:40 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

changed name of fh in con struct to fh, this should all apps requiring the private member to fail to build, added function to get fh, change code to use them both everythere

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroaryiff/connection.c

    r787 r1660  
    5252 } 
    5353 
    54  ycon->fd = con.fh; 
     54 if ( (ycon->fd = roar_get_connection_fh(&con)) == -1 ) { 
     55  roar_disconnect(&con); 
     56  free(ycon); 
     57  return NULL; 
     58 } 
    5559 
    5660 return ycon; 
Note: See TracChangeset for help on using the changeset viewer.