diff options
author | phk <phk@FreeBSD.org> | 1999-07-17 18:43:50 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-07-17 18:43:50 +0000 |
commit | 6c373ff516a4d81fb7ff42fa2e5f83336c689d02 (patch) | |
tree | f55a7b55757713b880028c26ee5d442c89c0bfee /sys/fs/cd9660 | |
parent | 490319991d4e8db85c4f009d40158c8aeeaf2ed8 (diff) | |
download | FreeBSD-src-6c373ff516a4d81fb7ff42fa2e5f83336c689d02.zip FreeBSD-src-6c373ff516a4d81fb7ff42fa2e5f83336c689d02.tar.gz |
I have not one single time remembered the name of this function correctly
so obviously I gave it the wrong name. s/umakedev/makeudev/g
Diffstat (limited to 'sys/fs/cd9660')
-rw-r--r-- | sys/fs/cd9660/cd9660_rrip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/fs/cd9660/cd9660_rrip.c b/sys/fs/cd9660/cd9660_rrip.c index 941435c..c4ad1d7 100644 --- a/sys/fs/cd9660/cd9660_rrip.c +++ b/sys/fs/cd9660/cd9660_rrip.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_rrip.c 8.6 (Berkeley) 12/5/94 - * $Id: cd9660_rrip.c,v 1.14 1999/04/18 10:58:01 dcs Exp $ + * $Id: cd9660_rrip.c,v 1.15 1999/05/11 19:54:24 phk Exp $ */ #include <sys/param.h> @@ -423,9 +423,9 @@ cd9660_rrip_device(p,ana) low = isonum_733(p->dev_t_low); if (high == 0) - ana->inop->inode.iso_rdev = umakedev(umajor(low), uminor(low)); + ana->inop->inode.iso_rdev = makeudev(umajor(low), uminor(low)); else - ana->inop->inode.iso_rdev = umakedev(high, uminor(low)); + ana->inop->inode.iso_rdev = makeudev(high, uminor(low)); ana->fields &= ~ISO_SUSP_DEVICE; return ISO_SUSP_DEVICE; } |