Skip to content

Commit

Permalink
Fix format specifier warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Oct 20, 2023
1 parent 21c924e commit cf0c42b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sst/elements/merlin/router.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class RtrEvent : public BaseRtrEvent {
}

virtual void print(const std::string& header, Output &out) const override {
out.output("%s RtrEvent to be delivered at %" PRIu64 " with priority %d. src = %lld (logical: %lld), dest = %lld\n",
out.output("%s RtrEvent to be delivered at %" PRIu64 " with priority %d. src = %ld (logical: %ld), dest = %ld\n",
header.c_str(), getDeliveryTime(), getPriority(), trusted_src, request->src, request->dest);
if ( request->inspectPayload() != NULL) request->inspectPayload()->print(" -> ", out);
}
Expand Down

0 comments on commit cf0c42b

Please sign in to comment.