Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix compile error introduced with r7704
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7706 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Dec 2, 2007
1 parent 7ae8b35 commit 1085c7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -3790,7 +3790,7 @@ void QgisApp::testMapLayerPlugins()
void *handle = dlopen(("../plugins/maplayer/" + mlpDir[i]).toLocal8Bit().data(), RTLD_LAZY | RTLD_GLOBAL );
if (!handle)
{
QgsDebugMsg("Error in dlopen: " + dlerror());
QgsDebugMsg( QString("Error in dlopen: %1").arg( dlerror() ));
}
else
{
Expand Down

0 comments on commit 1085c7c

Please sign in to comment.