summaryrefslogtreecommitdiff
path: root/libs/fst/scanner.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-02-25 09:43:40 +0100
committerRobin Gareus <robin@gareus.org>2014-02-25 14:57:57 +0100
commite2adf46e0ff8174410ba5b14a1d6aed8c5c8faf1 (patch)
tree043a1a44dcf53fe88f39c1a9d41acd6619aedd03 /libs/fst/scanner.cc
parent993ed5670175870c5b5930860e82db0efe158820 (diff)
update external VST scanner app
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