summaryrefslogtreecommitdiff
path: root/source3/locking
diff options
context:
space:
mode:
authorRichard Sharpe <rsharpe@samba.org>2015-05-15 07:38:04 -0700
committerJeremy Allison <jra@samba.org>2015-05-15 19:31:24 +0200
commit4602c86d58d0c7c37922a56bd4a3bfd9beb5a971 (patch)
tree4d1ba16ca42f7369f0dddfa296a2cbfb673c52da /source3/locking
parent0dde2106bb9a3be356e5feef8db172888a8cc8cf (diff)
downloadsamba-4602c86d58d0c7c37922a56bd4a3bfd9beb5a971.tar.gz
Convert uint64 to uint64_t
We seemed to have very few uses of that. Signed-off-by: Richard Sharpe <rsharpe@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/locking')
-rw-r--r--source3/locking/locking.c2
-rw-r--r--source3/locking/proto.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c
index 9dce85a1a54..7b8bc8425fa 100644
--- a/source3/locking/locking.c
+++ b/source3/locking/locking.c
@@ -345,7 +345,7 @@ NTSTATUS do_unlock(struct messaging_context *msg_ctx,
****************************************************************************/
NTSTATUS do_lock_cancel(files_struct *fsp,
- uint64 smblctx,
+ uint64_t smblctx,
uint64_t count,
uint64_t offset,
enum brl_flavour lock_flav)
diff --git a/source3/locking/proto.h b/source3/locking/proto.h
index 75faa94e09e..652ec2a4c66 100644
--- a/source3/locking/proto.h
+++ b/source3/locking/proto.h
@@ -132,7 +132,7 @@ NTSTATUS do_unlock(struct messaging_context *msg_ctx,
uint64_t offset,
enum brl_flavour lock_flav);
NTSTATUS do_lock_cancel(files_struct *fsp,
- uint64 smblctx,
+ uint64_t smblctx,
uint64_t count,
uint64_t offset,
enum brl_flavour lock_flav);