Skip to content

Commit

Permalink
Fix ovis_log print format warnings in zap_fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
narategithub committed Jul 26, 2023
1 parent aba8cac commit 42b4f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/zap/fabric/zap_fabric.c
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ static void process_recv_wc(struct z_fi_ep *rep, struct fi_cq_err_entry *entry)
out:
return;
err_wrong_dsz:
LOG_(rep, "msg type %d has invalid data len %d\n", msg_type, rb->data_len);
LOG_(rep, "msg type %d has invalid data len %zd\n", msg_type, rb->data_len);
z_fi_close(&rep->ep);
return;
}
Expand Down

0 comments on commit 42b4f76

Please sign in to comment.