summaryrefslogtreecommitdiff
path: root/libs/fst/scanner.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/fst/scanner.cc')
-rw-r--r--libs/fst/scanner.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/fst/scanner.cc b/libs/fst/scanner.cc
index 8225993b4e..ca95b25471 100644
--- a/libs/fst/scanner.cc
+++ b/libs/fst/scanner.cc
@@ -39,13 +39,13 @@ int main (int argc, char **argv) {
char *dllpath = argv[1];
std::vector<VSTInfo *> *infos;
#ifdef LXVST_SUPPORT
- if (strstr (dllpath, ".so" ) == 0) {
+ if (strstr (dllpath, ".so")) {
infos = vstfx_get_info_lx(dllpath);
}
#endif
#ifdef WINDOWS_VST_SUPPORT
- if (strstr (dllpath, ".dll" ) == 0) {
+ if (strstr (dllpath, ".dll")) {
infos = vstfx_get_info_fst(dllpath);
}
#endif