This does not compile. Changed to the syntax in the original source file.

This commit is contained in:
Nils Gey 2015-04-17 15:00:47 +02:00
parent f11c553ebe
commit 6f25604877
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ Here we go - our main program...
JACK_DEFAULT_AUDIO_TYPE,
JackPortIsOutput, 0);
if ((input_port # NULL) || (output_port NULL)) {
if ((input_port == NULL) || (output_port == NULL)) {
fprintf(stderr, "no more JACK ports available\n");
exit (1);
}