Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-05-07 19:49:23 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-05-07 19:49:23 +0400
commita4cf8b377985bcb4d74d7e83082cb0698296c04c (patch)
tree860e24ea4427f2830d718f5003f8f093bdaf6d8f
parent5455928262c7b2e99c8eb9be13665d819c4089d5 (diff)
Supress error message if dlopen for jack.so failed
This is mainly happening when there's no jack installed in the system and no reason to cause general panic messages in the terminal about this.
-rw-r--r--intern/audaspace/jack/AUD_JackLibrary.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/intern/audaspace/jack/AUD_JackLibrary.cpp b/intern/audaspace/jack/AUD_JackLibrary.cpp
index 150d22b324c..59c10397c48 100644
--- a/intern/audaspace/jack/AUD_JackLibrary.cpp
+++ b/intern/audaspace/jack/AUD_JackLibrary.cpp
@@ -47,7 +47,6 @@ void AUD_jack_init(void)
jack_handle = dlopen("libjack.so", RTLD_LAZY);
if (!jack_handle) {
- fprintf(stderr, "%s\n", dlerror());
return;
}