From a6045e5dc58f2dd2ab9e3d3d19fd3eaf6d84216f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jan 2010 01:22:03 +0000 Subject: Tidy. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2351 a436a847-0d15-0410-975c-d299462d15a1 --- src/module/World.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/module') 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(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(module); } else if (!module_path_found) { LOG(error) << "Unable to find " << name -- cgit v1.2.1