From b27f88898aa604d70d212c524549bb2cfc929170 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 14 Jun 2012 13:34:46 +0200 Subject: s3:vfs: change files_struct.fnum from int to uint64_t Signed-off-by: Stefan Metzmacher Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Fri Jun 15 05:22:41 CEST 2012 on sn-devel-104 --- source3/lib/filename_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/lib/filename_util.c') diff --git a/source3/lib/filename_util.c b/source3/lib/filename_util.c index fe43be6dc2..9a6ab2b34a 100644 --- a/source3/lib/filename_util.c +++ b/source3/lib/filename_util.c @@ -151,7 +151,8 @@ const char *fsp_fnum_dbg(const struct files_struct *fsp) return "fnum [invalid value]"; } - str = talloc_asprintf(talloc_tos(), "fnum %d", fsp->fnum); + str = talloc_asprintf(talloc_tos(), "fnum %llu", + (unsigned long long)fsp->fnum); if (str == NULL) { DEBUG(1, ("%s: talloc_asprintf failed\n", __FUNCTION__)); return "fnum [talloc failed!]"; -- cgit