From: Pavel Reichl Date: Fri, 21 Feb 2025 18:57:57 +0000 (+0100) Subject: xfsprogs: Fix mismatched return type of filesize() X-Git-Tag: v6.14.0~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a5466cee9874412cfdd187f07c5276e1d4ef0fea;p=thirdparty%2Fxfsprogs-dev.git xfsprogs: Fix mismatched return type of filesize() The function filesize() was declared with a return type of 'long' but defined with 'off_t'. This mismatch caused build issues due to type incompatibility. This commit updates the declaration to match the definition, ensuring consistency and preventing potential compilation errors. Fixes: 73fb78e5ee8 ("mkfs: support copying in large or sparse files") Signed-off-by: Pavel Reichl Reviewed-by: Darrick J. Wong Reviewed-by: Carlos Maiolino Fixes: 73fb78e5ee8 ("mkfs: support copying in large or sparse files") Reviewed-by: Carlos Maiolino --- diff --git a/mkfs/proto.c b/mkfs/proto.c index 2c453480..7f56a3d8 100644 --- a/mkfs/proto.c +++ b/mkfs/proto.c @@ -20,7 +20,7 @@ static struct xfs_trans * getres(struct xfs_mount *mp, uint blocks); static void rsvfile(xfs_mount_t *mp, xfs_inode_t *ip, long long len); static int newregfile(char **pp, char **fname); static void rtinit(xfs_mount_t *mp); -static long filesize(int fd); +static off_t filesize(int fd); static int slashes_are_spaces; /*