diff options
author | David Robillard <d@drobilla.net> | 2010-01-07 01:22:03 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-01-07 01:22:03 +0000 |
commit | a6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f (patch) | |
tree | 9dfd8f9eca08096fed8d4500755cd2a89876c7a8 /src/module | |
parent | 694736ac7e3478112a276533217ac5c8c7bf64b8 (diff) | |
download | ingen-a6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f.tar.gz ingen-a6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f.tar.bz2 ingen-a6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f.zip |
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2351 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/module')
-rw-r--r-- | src/module/World.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/module/World.cpp b/src/module/World.cpp index e3b93c8f..ff55919d 100644 --- a/src/module/World.cpp +++ b/src/module/World.cpp @@ -55,7 +55,7 @@ load_module(const string& name) if (Glib::file_test(filename, Glib::FILE_TEST_EXISTS)) { module = new Glib::Module(filename, Glib::MODULE_BIND_LAZY); if (*module) { - LOG(info) << "Loaded \"" << name << "\" from " << filename << endl; + LOG(info) << "Loaded `" << name << "' from " << filename << endl; return SharedPtr<Glib::Module>(module); } else { delete module; @@ -71,7 +71,7 @@ load_module(const string& name) Glib::MODULE_BIND_LAZY); if (*module) { - LOG(info) << "Loaded \"" << name << "\" from " << INGEN_MODULE_DIR << endl; + LOG(info) << "Loaded `" << name << "' from " << INGEN_MODULE_DIR << endl; return SharedPtr<Glib::Module>(module); } else if (!module_path_found) { LOG(error) << "Unable to find " << name |