From: Stefan Metzmacher Date: Mon, 2 Sep 2013 17:29:05 +0000 (+0200) Subject: s3:include: fix messaging_send_buf() protype in messages.h X-Git-Url: http://git.samba.org/?p=mat%2Fsamba.git;a=commitdiff_plain;h=d221d84e8d4e2eeefaf0fe9869cc127787936e0b s3:include: fix messaging_send_buf() protype in messages.h The function already used 'uint8_t' instead of 'uint8'. Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- diff --git a/source3/include/messages.h b/source3/include/messages.h index 12fc439969..cefa2793fd 100644 --- a/source3/include/messages.h +++ b/source3/include/messages.h @@ -136,7 +136,7 @@ NTSTATUS messaging_send(struct messaging_context *msg_ctx, NTSTATUS messaging_send_buf(struct messaging_context *msg_ctx, struct server_id server, uint32_t msg_type, - const uint8 *buf, size_t len); + const uint8_t *buf, size_t len); void messaging_dispatch_rec(struct messaging_context *msg_ctx, struct messaging_rec *rec);