From 35c92f1e396d86f04616cd01ef3f045bc2dfb98e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 17 Sep 2015 01:49:48 -0500 Subject: Fix a couple things gcc is too dumb to figure out on its own. --- toys/other/blkid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/other') diff --git a/toys/other/blkid.c b/toys/other/blkid.c index fad1159d..8d3e7707 100644 --- a/toys/other/blkid.c +++ b/toys/other/blkid.c @@ -34,7 +34,7 @@ struct fstype { }; static const struct fstype fstypes[] = { - {"swap", 0x4341505350415753, 8, 4086, 1036, 15, 1052}, + {"swap", 0x4341505350415753LL, 8, 4086, 1036, 15, 1052}, {"ext2", 0xEF53, 2, 1080, 1128, 16, 1144}, // keep this first for ext3/4 check // NTFS label actually 8/16 0x4d80 but horrible: 16 bit wide characters via // codepage, something called a uuid that's only 8 bytes long... -- cgit v1.2.3