From a9522c883406cd554907a50ed536a17566eeedf9 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Fri, 6 Apr 2001 04:04:51 +0000 Subject: [PATCH] changes for ltdl.h (when I remove that backward compatible POSIX breaking hack). svn path=/trunk/kdebase/kwin/; revision=90718 --- plugins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.cpp b/plugins.cpp index 2b544243d1..cda1c71af8 100644 --- a/plugins.cpp +++ b/plugins.cpp @@ -164,7 +164,7 @@ void PluginMgr::loadPlugin(QString nameStr) if( !path.isEmpty() ) { if ( (handle = lt_dlopen(path.latin1() ) ) ) { - lt_ptr_t alloc_func = lt_dlsym(handle, "allocate"); + lt_ptr alloc_func = lt_dlsym(handle, "allocate"); if(alloc_func) { alloc_ptr = (Client* (*)(Workspace *ws, WId w, int tool))alloc_func; } else{