Changeset 3776:2f44405c0617 in roaraudio


Ignore:
Timestamp:
05/06/10 23:19:29 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

a debug lion

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/roardl.c

    r3517 r3776  
    117117void                   * roar_dl_getsym(struct roar_dl_lhandle * lhandle, const char * sym, int type) { 
    118118#if defined(ROAR_HAVE_LIBDL) 
    119  return dlsym(_roardl2ldl(lhandle), sym); 
     119 void * ret = dlsym(_roardl2ldl(lhandle), sym); 
     120 
     121 ROAR_DBG("roar_dl_getsym(lhandle=%p, sym='%s', type=%i) = %p", lhandle, sym, type, ret); 
     122 
     123 return ret; 
    120124#else 
    121125 return NULL; 
Note: See TracChangeset for help on using the changeset viewer.