diff options
author | bde <bde@FreeBSD.org> | 2001-10-03 03:49:48 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-10-03 03:49:48 +0000 |
commit | 3f1e09f08e70d52e168c8f2fef8641440f39daa4 (patch) | |
tree | dcbe966c04d09127da41dedf28d9fe0ce41db9ad /lib/libdisk | |
parent | 3ebf15b40ca74386fdf65f0529bf1b1af2e1f893 (diff) | |
download | FreeBSD-src-3f1e09f08e70d52e168c8f2fef8641440f39daa4.zip FreeBSD-src-3f1e09f08e70d52e168c8f2fef8641440f39daa4.tar.gz |
Fixed bitrot in synopsis. The change of the return type of
Set_Boot_Blocks() from void to int had not reached here. Callers
still don't check the new return value.
Diffstat (limited to 'lib/libdisk')
-rw-r--r-- | lib/libdisk/libdisk.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libdisk/libdisk.3 b/lib/libdisk/libdisk.3 index 91ceb47..36e35e8 100644 --- a/lib/libdisk/libdisk.3 +++ b/lib/libdisk/libdisk.3 @@ -95,7 +95,7 @@ .Fn Disk_Names "void" .Ft void .Fn Set_Boot_Mgr "struct disk *d" "const u_char *bootmgr" "const size_t bootmgr_size" -.Ft void +.Ft int .Fn Set_Boot_Blocks "struct disk *d" "const u_char *boot1" "const u_char *boot2" .Ft int .Fn Write_Disk "struct disk *d" |