Add parentheses for clarity.

master
Albert Graef 2018-08-22 01:02:25 +02:00
parent 346fbd415c
commit 1639db1362
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ init_jack(JACK_SEQ* seq, uint8_t verbose)
if (verbose && (status & JackServerStarted)) {
printf("JACK server started\n");
}
if (verbose && status & JackNameNotUnique) {
if (verbose && (status & JackNameNotUnique)) {
client_name = jack_get_client_name(seq->jack_client);
printf("JACK client name changed to: %s\n", client_name);
}