From b03137d568f598eb0b506c6c4871a1311bc682e7 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Sun, 11 Sep 2005 05:16:54 +0000 Subject: [PATCH] r10150: Fix from Steve Williams to make the args consistent (uint64_t). Jeremy. (This used to be commit 08de7261720f7bfd72396ea7c9777dc0734c4593) --- source3/libsmb/smb_share_modes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/libsmb/smb_share_modes.c b/source3/libsmb/smb_share_modes.c index 1c95fe1a305..9e7f196b825 100644 --- a/source3/libsmb/smb_share_modes.c +++ b/source3/libsmb/smb_share_modes.c @@ -94,8 +94,8 @@ int smb_lock_share_mode_entry(struct smbdb_ctx *db_ctx, } int smb_unlock_share_mode_entry(struct smbdb_ctx *db_ctx, - dev_t dev, - ino_t ino) + uint64_t dev, + uint64_t ino) { return tdb_chainunlock(db_ctx->smb_tdb, get_locking_key(dev, ino)); } -- 2.34.1