Skip to content

Commit

Permalink
fix compile error introduced with r7704
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@7706 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Dec 2, 2007
1 parent 569d12d commit df5b2d7
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 df5b2d7

Please sign in to comment.