s3:include: fix messaging_send_buf() protype in messages.h
authorStefan Metzmacher <metze@samba.org>
Mon, 2 Sep 2013 17:29:05 +0000 (19:29 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 16 Oct 2013 19:48:57 +0000 (08:48 +1300)
The function already used 'uint8_t' instead of 'uint8'.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source3/include/messages.h

index 12fc4399693cadfd05be6b9441b2a6cdb52870ab..cefa2793fd5788b21e7500630f4d830167cb301b 100644 (file)
@@ -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);