1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 04:17:33 +00:00

removed compile warnings

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@510 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Philip Kovacs 2006-01-26 02:29:33 +00:00
parent d7f669a00d
commit 1e3042a2b4

View File

@ -219,10 +219,10 @@ void *xmms_thread_func_dynamic(void *pvoid)
case (PROJECT_XMMS) :
/* make an effort to find the glib 1.2 shared lib */
glib_v1_2_handle = dlopen("libglib-1.2.so.0", RTLD_LAZY) ||
dlopen("libglib12.so", RTLD_LAZY) ||
dlopen("libglib.so", RTLD_LAZY);
if (!glib_v1_2_handle) {
if ( ((glib_v1_2_handle = dlopen("libglib-1.2.so.0", RTLD_LAZY))==NULL) &&
((glib_v1_2_handle = dlopen("libglib12.so", RTLD_LAZY))==NULL) &&
((glib_v1_2_handle = dlopen("libglib.so", RTLD_LAZY))==NULL) )
{
ERR("unable to find glib 1.2 shared object lib!");
pthread_exit(NULL);
}