Skip to content

Commit

Permalink
rpc_server: Avoid a cast
Browse files Browse the repository at this point in the history
Signed-off-by: Volker Lendecke <[email protected]>
Reviewed-by: Jeremy Allison <[email protected]>
  • Loading branch information
vlendec authored and jrasamba committed Jun 4, 2021
1 parent d4e5ce9 commit 87a0a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source3/rpc_server/srv_pipe_hnd.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ struct tevent_req *np_write_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
struct np_write_state *state;
NTSTATUS status;

DEBUG(6, ("np_write_send: len: %d\n", (int)len));
DBG_INFO("len: %zu\n", len);
dump_data(50, data, len);

req = tevent_req_create(mem_ctx, &state, struct np_write_state);
Expand Down

0 comments on commit 87a0a20

Please sign in to comment.