Skip to content

Commit

Permalink
Fix print format warning in zap_sock
Browse files Browse the repository at this point in the history
  • Loading branch information
narategithub authored and tom95858 committed Oct 10, 2023
1 parent 022b4d2 commit e911254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/zap/sock/zap_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ static int __recv_msg(struct z_sock_ep *sep)
/* allow big message */
} else {
if (mlen > SOCKBUF_SZ) {
DEBUG_LOG(sep, "%d ep: %p, RECV invalid message length: %u\n",
DEBUG_LOG(sep, "%ld ep: %p, RECV invalid message length: %u\n",
GETTID(), sep, mlen);
rc = EINVAL;
from_line = __LINE__;
Expand Down

0 comments on commit e911254

Please sign in to comment.