From 4c6bcb0c05075b8fc606e72123b26288ea80d3bb Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 31 Jan 2005 16:10:36 +0000 Subject: r5139: fix types metze (This used to be commit 8507a57b88c6acce84d9ccc580e17c7f96c6d7af) --- source4/librpc/ndr/ndr_basic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/librpc/ndr/ndr_basic.c b/source4/librpc/ndr/ndr_basic.c index 61b3c9ec4d..9601421044 100644 --- a/source4/librpc/ndr/ndr_basic.c +++ b/source4/librpc/ndr/ndr_basic.c @@ -1304,12 +1304,12 @@ NTSTATUS ndr_pull_DATA_BLOB(struct ndr_pull *ndr, DATA_BLOB *blob) return NT_STATUS_OK; } -uint32 ndr_size_DATA_BLOB(int ret, const DATA_BLOB *data, int flags) +uint32_t ndr_size_DATA_BLOB(int ret, const DATA_BLOB *data, int flags) { return ret + data->length; } -uint32 ndr_size_string(int ret, const char * const* string, int flags) +uint32_t ndr_size_string(int ret, const char * const* string, int flags) { /* FIXME: Is this correct for all strings ? */ if(!(*string)) return ret; -- cgit