Skip to content

Commit

Permalink
Fix compiler warning about incorrect format string (run number is uns…
Browse files Browse the repository at this point in the history
…igned long, not long long)
  • Loading branch information
davidrohr authored and teo committed Oct 9, 2020
1 parent b70744a commit b9cc9d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion occ/occlib/OccServer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ t_State OccServer::processStateTransition(const std::string& event, const boost:

std::string evt = boost::algorithm::to_lower_copy(event);

printf("[OCC] Object: %s - processing event %s in state %s with run number %llu.\n",
printf("[OCC] Object: %s - processing event %s in state %s with run number %lu.\n",
m_rco->getName().c_str(),
evt.c_str(),
getStringFromState(currentState).c_str(),
Expand Down

0 comments on commit b9cc9d0

Please sign in to comment.