From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 40/62] bacula: Fix build with GCC 10 Date: Sun, 16 Aug 2020 10:29:31 +0000 Message-ID: <20200816102953.3881-40-michael.tremer@ipfire.org> In-Reply-To: <20200816102953.3881-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5544060874655543213==" List-Id: --===============5544060874655543213== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable GCC 10 aborts compilation when nunbers are (potentially) out of range when casted from one type to another: fstype.c: In function 'bool fstype(FF_PKT*, char*, int)': fstype.c:207:12: error: narrowing conversion of '4283649346' from 'unsigned int' to 'int' [-Wnarrowing] 207 | case 0xFF534D42: fstype =3D "cifs"; break; /* CIFS_MAGIC_NUMBER */ | ^~~~~~~~~~ fstype.c:216:12: error: narrowing conversion of '4187351113' from 'unsigned int' to 'int' [-Wnarrowing] 216 | case 0xf995e849: fstype =3D "hpfs"; break; /* HPFS_SUPER_MAGIC */ | ^~~~~~~~~~ fstype.c:217:12: error: narrowing conversion of '2508478710' from 'unsigned int' to 'int' [-Wnarrowing] 217 | case 0x958458f6: fstype =3D "hugetlbfs"; break; /* HUGETLBFS_MAGIC */ | ^~~~~~~~~~ fstype.c:234:12: error: narrowing conversion of '2768370933' from 'unsigned int' to 'int' [-Wnarrowing] 234 | case 0xa501FCF5: fstype =3D "vxfs"; break; | ^~~~~~~~~~ fstype.c:237:12: error: narrowing conversion of '2435016766' from 'unsigned int' to 'int' [-Wnarrowing] 237 | case 0x9123683e: fstype =3D "btrfs"; break; | ^~~~~~~~~~ Does nobody build this for 32 bit any more? Signed-off-by: Michael Tremer --- lfs/bacula | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lfs/bacula b/lfs/bacula index f5220bf16..3201688f4 100644 --- a/lfs/bacula +++ b/lfs/bacula @@ -36,6 +36,9 @@ PAK_VER =3D 6 =20 DEPS =3D =20 +# For GCC 10 +CFLAGS +=3D -Wno-error=3Dnarrowing + ############################################################################= ### # Top-level Rules ############################################################################= ### --=20 2.20.1 --===============5544060874655543213==--