Browse Source

[0.89.5] fix VERBOSE() macro

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@550 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
joq 22 years ago
parent
commit
710c3e4504
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      configure.in
  2. +1
    -1
      jack/engine.h
  3. +1
    -1
      jackd/jackd.c

+ 1
- 1
configure.in View File

@@ -15,7 +15,7 @@ dnl changes are made
dnl ---
JACK_MAJOR_VERSION=0
JACK_MINOR_VERSION=89
JACK_MICRO_VERSION=4
JACK_MICRO_VERSION=5

dnl ---
dnl HOWTO: updating the jack protocal version


+ 1
- 1
jack/engine.h View File

@@ -27,7 +27,7 @@
#include <jack/driver_interface.h>

#define VERBOSE(engine,format,args...) \
if ((engine)->verbose) jack_error (format, ## args)
if ((engine)->verbose) fprintf (stderr, format, ## args)

struct _jack_driver;
struct _jack_client_internal;


+ 1
- 1
jackd/jackd.c View File

@@ -405,7 +405,7 @@ main (int argc, char *argv[])
int status;
#endif

setvbuf (stdout, NULL, _IOLBF, 120);
setvbuf (stdout, NULL, _IOLBF, 0);

#ifdef USE_CAPABILITIES



Loading…
Cancel
Save