~vcs-imports/pidgin-musictracker/trunk

« back to all changes in this revision

Viewing changes to src/xmms2.c

  • Committer: jon.turney at org
  • Date: 2010-09-19 16:13:38 UTC
  • Revision ID: svn-v4:dccc4ef9-3752-0410-9079-47cdceed9760:trunk:469
Fix format string error introduced in r464

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
static struct xmmsclientlib dl;
36
36
 
37
37
#define get_func(name) dl.name = dlsym(handle, #name) ; \
38
 
                       if (dl.name == NULL) {trace("(XMMS2) could not resolve symbol %s in ", #name, libname); dlclose(handle); return NULL; } ; 
 
38
                       if (dl.name == NULL) {trace("(XMMS2) could not resolve symbol %s in %s", #name, libname); dlclose(handle); return NULL; } ; 
39
39
 
40
40
static
41
41
void *xmms2_dlsym_init(const char *libname)