Changeset 3365:14c913af395f in roaraudio


Ignore:
Timestamp:
02/08/10 17:08:06 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

print error message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/plugins.c

    r3362 r3365  
    106106 
    107107 next->lhandle = roar_dl_open(filename, -1, 0 /* we delay this until plugins_init() */); 
    108  if ( next->lhandle == NULL ) 
     108 if ( next->lhandle == NULL ) { 
     109  ROAR_ERR("plugins_load(filename='%s'): can not load plugin: %s", filename, roar_dl_errstr(NULL)); 
    109110  return -1; 
     111 } 
    110112 
    111113 return 0; 
Note: See TracChangeset for help on using the changeset viewer.