Skip to content

Commit

Permalink
gh-608 Fix --print-supported in roc-send
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Nov 25, 2023
1 parent faaba73 commit d7c2bcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/roc_send/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ int main(int argc, char** argv) {

sndio::BackendDispatcher backend_dispatcher(context.arena());
if (args.list_supported_given) {
if (!sndio::print_supported(backend_dispatcher, context.arena())) {
if (!address::print_supported(context.arena())) {
return 1;
}

if (!address::print_supported(context.arena())) {
if (!sndio::print_supported(backend_dispatcher, context.arena())) {
return 1;
}

Expand Down

0 comments on commit d7c2bcd

Please sign in to comment.