Skip to content

Commit a815927

Browse files
author
Petr Matousek
committed
tx mode recognition fix
1 parent 260d099 commit a815927

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/qpid-proton/clients/aac3_receiver.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ int main(int argc, char** argv)
2424
}
2525

2626
if (tx_mode) {
27-
ReceivingClient client = ReceivingClient();
27+
TxReceivingClient client = TxReceivingClient();
2828
return client.run(argc, argv);
2929
} else {
30-
TxReceivingClient client = TxReceivingClient();
30+
ReceivingClient client = ReceivingClient();
3131
return client.run(argc, argv);
3232
}
3333
}

0 commit comments

Comments
 (0)