From: Volker Lendecke Date: Tue, 29 Jan 2019 08:32:43 +0000 (+0200) Subject: vfs_gpfs: Fix the 32-bit build X-Git-Tag: ldb-1.6.1~283 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60b062d614ecf8fa97b3efc0e587d3ee55e4971b;p=thirdparty%2Fsamba.git vfs_gpfs: Fix the 32-bit build Signed-off-by: Volker Lendecke Reviewed-by: Christof Schmitt Autobuild-User(master): Christof Schmitt Autobuild-Date(master): Tue Jan 29 22:06:59 CET 2019 on sn-devel-144 --- diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 3a75efdf5e6..d86d0996fcd 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -2112,8 +2112,10 @@ static int vfs_gpfs_connect(struct vfs_handle_struct *handle, if (buf.f_type != GPFS_SUPER_MAGIC) { DBG_ERR("SMB share %s, path %s not in GPFS file system." - " statfs magic: 0x%lx\n", - service, connectpath, buf.f_type); + " statfs magic: 0x%jx\n", + service, + connectpath, + (uintmax_t)buf.f_type); errno = EINVAL; TALLOC_FREE(config); return -1;