diff options
author | Eric Andersen | 2003-11-14 02:40:08 +0000 |
---|---|---|
committer | Eric Andersen | 2003-11-14 02:40:08 +0000 |
commit | e0c83af4ce5ead90a3f568c1105859de706b9ecc (patch) | |
tree | 36a2856bdc68d99e6f08547a5a171a3d4a3e087c /util-linux/fdisk.c | |
parent | d2a897aab084b433231aab5f6908a79cba67dc5d (diff) | |
download | busybox-e0c83af4ce5ead90a3f568c1105859de706b9ecc.zip busybox-e0c83af4ce5ead90a3f568c1105859de706b9ecc.tar.gz |
Marc Kleine-Budde noticed a missing semicolon
Diffstat (limited to 'util-linux/fdisk.c')
-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 6c28e02..ca682f7 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -870,7 +870,7 @@ static int _llseek (unsigned int, unsigned long, static _syscall5(int,_llseek,unsigned int,f_d,unsigned long,offset_high, unsigned long, offset_low,fdisk_loff_t *,result, - unsigned int, origin) + unsigned int, origin); static fdisk_loff_t my_llseek (unsigned int f_d, fdisk_loff_t offset, unsigned int origin) |