Browse Source

JackFifo: Fix the fifo name in the jack_error log

Change-Id: I7a15b1b215c1e7c3fea3f59d4d54bc10565aee4d
Signed-off-by: Laxmi Devi <Laxmi.Devi@in.bosch.com>
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>
tags/v1.9.15
Laxmi Devi Filipe Coelho <falktx@falktx.com> 5 years ago
parent
commit
c2e301703e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      posix/JackFifo.cpp

+ 1
- 1
posix/JackFifo.cpp View File

@@ -132,7 +132,7 @@ bool JackFifo::Allocate(const char* name, const char* server_name, int value)
if (stat(fName, &statbuf) < 0) {
if (errno == ENOENT || errno == EPERM) {
if (mkfifo(fName, 0666) < 0) {
jack_error("Cannot create inter-client FIFO name = %s err = %s", name, strerror(errno));
jack_error("Cannot create inter-client FIFO name = %s err = %s", fName, strerror(errno));
return false;
}
} else {


Loading…
Cancel
Save