From 5353b8c88e3c82812e41e3411d1085e0dd481a1b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 19 Oct 2008 21:36:38 +0000 Subject: Make ingen actually run again :) git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1688 a436a847-0d15-0410-975c-d299462d15a1 --- src/module/Module.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/module') diff --git a/src/module/Module.cpp b/src/module/Module.cpp index 02808206..16aecb66 100644 --- a/src/module/Module.cpp +++ b/src/module/Module.cpp @@ -53,11 +53,9 @@ load_module(const string& name) string dir; istringstream iss(module_path); while (getline(iss, dir, ':')) { - string filename = Glib::Module::build_path(dir, name); if (Glib::file_test(filename, Glib::FILE_TEST_EXISTS)) { module = new Glib::Module(filename, Glib::MODULE_BIND_LAZY); - if (*module) { cerr << "Loaded module \"" << name << "\" from " << filename << endl; return SharedPtr(module); -- cgit v1.2.1