1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-04 12:52:15 +00:00

Oops, DIOCGPC98 should be DIOCSPC98.

This commit is contained in:
Yoshihiro Takahashi 2003-05-01 14:30:59 +00:00
parent 711ccd049d
commit f67666fcb7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114418

View File

@ -904,7 +904,7 @@ write_disk(off_t sector, void *buf)
#ifdef PC98
if (fdw != -1) {
return ioctl(fdw, DIOCGPC98, buf);
return ioctl(fdw, DIOCSPC98, buf);
} else {
lseek(fd,(sector * 512), 0);
/* write out in the size that the read_disk found worked */