Browse Source

Fix C++14 warning

Space required before macro. No functional changes.
tags/v1.9.11-RC1
Adrian Knoth 9 years ago
parent
commit
43efc94ebd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      posix/JackPosixServerLaunch.cpp

+ 1
- 1
posix/JackPosixServerLaunch.cpp View File

@@ -124,7 +124,7 @@ static void start_server_classic_aux(const char* server_name)

if (!good) {
command = (char*)(JACK_LOCATION "/jackd");
strncpy(arguments, JACK_LOCATION "/jackd -T -d "JACK_DEFAULT_DRIVER, 255);
strncpy(arguments, JACK_LOCATION "/jackd -T -d " JACK_DEFAULT_DRIVER, 255);
} else {
result = strcspn(arguments, " ");
command = (char*)malloc(result + 1);


Loading…
Cancel
Save