Skip to content

Commit

Permalink
Fix the compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman committed Sep 7, 2023
1 parent 1d1c91a commit e22dbcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ola-client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ int SendDmx(OlaClientWrapper *wrapper, const options &opts) {
}

// A dmx string and blackout are mutually exclusive
if (opts.uni < 0 || !status || (opts.blackout && !opts.dmx.empty) ||
if (opts.uni < 0 || !status || (opts.blackout && !opts.dmx.empty()) ||
buffer.Size() == 0) {
DisplaySetDmxHelp(opts);
exit(1);
Expand Down

0 comments on commit e22dbcb

Please sign in to comment.