From a4cf8b377985bcb4d74d7e83082cb0698296c04c Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 7 May 2013 15:49:23 +0000 Subject: 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. --- intern/audaspace/jack/AUD_JackLibrary.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'intern/audaspace') 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; } -- cgit v1.2.3