Changeset 5161:a84238f288d8 in roaraudio


Ignore:
Timestamp:
10/16/11 16:09:26 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

avoid to warnings about unused return value

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/roard.c

    r5160 r5161  
    948948 printf("---------------------------------------------\n"); 
    949949 for (i = 0; i < ret; i++) { 
    950   roar_profile2info(&info, list[i]); 
     950  if ( roar_profile2info(&info, list[i]) == -1 ) { 
     951   printf("  %-10s --- unknown parameters ---\n", list[i]); 
     952   continue; 
     953  } 
    951954 
    952955  mime = roar_codec2mime(info.codec); 
     
    14531456 
    14541457 // load config 
    1455  roar_libroar_get_config(); 
     1458 _LIBROAR_IGNORE_RET(roar_libroar_get_config()); 
    14561459 
    14571460 // init notify core: 
Note: See TracChangeset for help on using the changeset viewer.