Browse Source

Add the missing JCALog function

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@880 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
letz 21 years ago
parent
commit
d96f700aef
1 changed files with 12 additions and 1 deletions
  1. +12
    -1
      drivers/coreaudio/coreaudio_driver.c

+ 12
- 1
drivers/coreaudio/coreaudio_driver.c View File

@@ -47,7 +47,18 @@

const int CAVersion = 3;

void JCALog(char *fmt, ...);
#define PRINTDEBUG 1

static void JCALog(char *fmt, ...)
{
#ifdef PRINTDEBUG
va_list ap;
va_start(ap, fmt);
fprintf(stderr, "JCA: ");
vfprintf(stderr, fmt, ap);
va_end(ap);
#endif
}

static void printError1(OSStatus err)
{


Loading…
Cancel
Save