Skip to content

Commit 5f66e50

Browse files
committed
DPL: fix warning about enum conversion
1 parent ab807ee commit 5f66e50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/DataProcessingDevice.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1589,7 +1589,7 @@ void DataProcessingDevice::Run()
15891589
}
15901590
}
15911591

1592-
O2_SIGNPOST_END(device, lid, "run_loop", "Run loop completed. Transition handling state %d.", state.transitionHandling);
1592+
O2_SIGNPOST_END(device, lid, "run_loop", "Run loop completed. Transition handling state %d.", (int)state.transitionHandling);
15931593
auto& spec = ref.get<DeviceSpec const>();
15941594
/// Cleanup messages which are still pending on exit.
15951595
for (size_t ci = 0; ci < spec.inputChannels.size(); ++ci) {

0 commit comments

Comments
 (0)