aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-25 22:39:24 +0000
committerRob Landley <rob@landley.net>2006-06-25 22:39:24 +0000
commit11c7a7bed60a55a670363bec3c07e8d88aa372b7 (patch)
tree809c167b4c007b334afcb34b4689841a029022ac /util-linux
parentf087798e8bf5857b679c369601426ca29334caee (diff)
downloadbusybox-w32-11c7a7bed60a55a670363bec3c07e8d88aa372b7.tar.gz
busybox-w32-11c7a7bed60a55a670363bec3c07e8d88aa372b7.tar.bz2
busybox-w32-11c7a7bed60a55a670363bec3c07e8d88aa372b7.zip
Various cleanups I made while going through Erik Hovland's patch submissions,
some of which are even from him. :)
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/fdisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c
index cd8252649..0f268afed 100644
--- a/util-linux/fdisk.c
+++ b/util-linux/fdisk.c
@@ -1974,7 +1974,7 @@ create_sgiinfo(void)
1974 /* I keep SGI's habit to write the sgilabel to the second block */ 1974 /* I keep SGI's habit to write the sgilabel to the second block */
1975 sgilabel->directory[0].vol_file_start = SGI_SSWAP32(2); 1975 sgilabel->directory[0].vol_file_start = SGI_SSWAP32(2);
1976 sgilabel->directory[0].vol_file_size = SGI_SSWAP32(sizeof(sgiinfo)); 1976 sgilabel->directory[0].vol_file_size = SGI_SSWAP32(sizeof(sgiinfo));
1977 strncpy((char*)sgilabel->directory[0].vol_file_name, "sgilabel", 8); 1977 strcpy((char*)sgilabel->directory[0].vol_file_name, "sgilabel");
1978} 1978}
1979 1979
1980static sgiinfo *fill_sgiinfo(void); 1980static sgiinfo *fill_sgiinfo(void);