Skip to content

Commit

Permalink
Add missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
tsdgeos committed Jan 16, 2014
1 parent eb43351 commit d8242f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libkst/datasourcepluginmanager.cpp
Expand Up @@ -174,7 +174,7 @@ static void scanPlugins() {
QDir d(pluginPath);
foreach (const QString &fileName, d.entryList(QDir::Files)) {
#ifdef Q_OS_WIN
if (!fileName.endsWith(QLatin1String(".dll"))
if (!fileName.endsWith(QLatin1String(".dll")))
continue;
#endif
QPluginLoader loader(d.absoluteFilePath(fileName));
Expand Down

0 comments on commit d8242f4

Please sign in to comment.