Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
giucam committed Jul 5, 2023
1 parent 2bd48db commit 85cf5e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/service/acquisition/test/acqWorker_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const boost::ut::suite basic_acq_worker_tests = [] {

client.unsubscribe(URI("mds://127.0.0.1:12345/DeviceName/Acquisition?channelNameFilter=saw"));
client.unsubscribe(URI("mds://127.0.0.1:12345/DeviceName/Acquisition"));
fmt::print("received client updates: {} for 'A' and {} for 'A,B'\n", receivedA, receivedAB);
fmt::print("received client updates: {} for 'A' and {} for 'A,B'\n", receivedA.load(), receivedAB.load());
expect(int(receivedA) >= 2_i);
expect(int(receivedAB) >= 2_i);
client.stop();
Expand Down
2 changes: 1 addition & 1 deletion src/service/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ int main() {

client.unsubscribe(URI("mds://127.0.0.1:12345/DeviceName/Acquisition?channelNameFilter=saw"));
client.unsubscribe(URI("mds://127.0.0.1:12345/DeviceName/Acquisition"));
fmt::print("received client updates: {} for 'sine' and {} for 'sine,saw'\n", receivedA, receivedAB);
fmt::print("received client updates: {} for 'sine' and {} for 'sine,saw'\n", receivedA.load(), receivedAB.load());
client.stop();

// shutdown
Expand Down

0 comments on commit 85cf5e3

Please sign in to comment.