diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-14 02:40:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-14 02:40:08 +0000 |
commit | e0c83af4ce5ead90a3f568c1105859de706b9ecc (patch) | |
tree | 36a2856bdc68d99e6f08547a5a171a3d4a3e087c /util-linux | |
parent | d2a897aab084b433231aab5f6908a79cba67dc5d (diff) | |
download | busybox-w32-e0c83af4ce5ead90a3f568c1105859de706b9ecc.tar.gz busybox-w32-e0c83af4ce5ead90a3f568c1105859de706b9ecc.tar.bz2 busybox-w32-e0c83af4ce5ead90a3f568c1105859de706b9ecc.zip |
Marc Kleine-Budde noticed a missing semicolon
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 6c28e02ec..ca682f745 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -870,7 +870,7 @@ static int _llseek (unsigned int, unsigned long, | |||
870 | 870 | ||
871 | static _syscall5(int,_llseek,unsigned int,f_d,unsigned long,offset_high, | 871 | static _syscall5(int,_llseek,unsigned int,f_d,unsigned long,offset_high, |
872 | unsigned long, offset_low,fdisk_loff_t *,result, | 872 | unsigned long, offset_low,fdisk_loff_t *,result, |
873 | unsigned int, origin) | 873 | unsigned int, origin); |
874 | 874 | ||
875 | static fdisk_loff_t my_llseek (unsigned int f_d, fdisk_loff_t offset, | 875 | static fdisk_loff_t my_llseek (unsigned int f_d, fdisk_loff_t offset, |
876 | unsigned int origin) | 876 | unsigned int origin) |