Browse Source

Fix compilation error of set_thread_log_function.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@4019 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/v1.9.6
sletz 15 years ago
parent
commit
a007ddb255
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      common/JackError.cpp
  2. +1
    -1
      common/JackError.h

+ 1
- 1
common/JackError.cpp View File

@@ -33,7 +33,7 @@ static bool change_thread_log_function(jack_log_function_t log_function)
&& jack_tls_set(JackGlobals::fKeyLogFunction, (void*)log_function));
}

SERVER_EXPORT bool set_threaded_log_function()
SERVER_EXPORT int set_threaded_log_function()
{
return change_thread_log_function(JackMessageBufferAdd);
}


+ 1
- 1
common/JackError.h View File

@@ -55,7 +55,7 @@ extern "C"

void jack_log_function(int level, const char *message);
SERVER_EXPORT bool set_threaded_log_function();
SERVER_EXPORT int set_threaded_log_function();

#ifdef __cplusplus
}


Loading…
Cancel
Save