diff options
author | Eric Andersen | 2004-01-30 22:54:20 +0000 |
---|---|---|
committer | Eric Andersen | 2004-01-30 22:54:20 +0000 |
commit | dfcb5b041242d08944d3c34eef36dfff1a9177c3 (patch) | |
tree | 618dfd4c93ffc48caf873c711052f793a3c022b0 /util-linux/fdisk.c | |
parent | 0f56de665c12763d74f402fa5ac6edd95202caaa (diff) | |
download | busybox-dfcb5b041242d08944d3c34eef36dfff1a9177c3.zip busybox-dfcb5b041242d08944d3c34eef36dfff1a9177c3.tar.gz |
s/u_int/uint/g
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r-- | util-linux/fdisk.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 2088e6c..8913803 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -954,7 +954,7 @@ static int xbsd_part_index; #endif #if defined (__alpha__) -/* We access this through a u_int64_t * when checksumming */ +/* We access this through a uint64_t * when checksumming */ static char disklabelbuffer[BSD_BBSIZE] __attribute__((aligned(8))); #else static char disklabelbuffer[BSD_BBSIZE]; @@ -1712,16 +1712,16 @@ xbsd_link_part (void) #if defined (__alpha__) #if !defined(__GLIBC__) -typedef unsigned long long u_int64_t; +typedef unsigned long long uint64_t; #endif static void alpha_bootblock_checksum (char *boot) { - u_int64_t *dp, sum; + uint64_t *dp, sum; int i; - dp = (u_int64_t *)boot; + dp = (uint64_t *)boot; sum = 0; for (i = 0; i < 63; i++) sum += dp[i]; |