From 56e874c57638994a7ec56d08b41986f5c1a67f2d Mon Sep 17 00:00:00 2001 From: andersen Date: Fri, 12 Dec 2003 19:05:15 +0000 Subject: Be certain we use a correct entity when performing the BLKGETSIZE64 ioctl -- don't just assume 8, git-svn-id: svn://busybox.net/trunk/busybox@8083 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- util-linux/fdisk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index bd929d88d..31a7d8076 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -60,7 +60,7 @@ * _IOR rather differently */ #undef _IOR #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) -#define BLKGETSIZE64 _IOR(0x12,114,8) /* 8 = sizeof(u64) */ +#define BLKGETSIZE64 _IOR(0x12,114,uint64_t) /* fdisk.h -- cgit v1.2.3-55-g6feb