mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Add comment: reflect the fact that lba stored in network byte order
This commit is contained in:
parent
e48413a02e
commit
ff60dd409f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13819
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* 16 Feb 93 Julian Elischer (julian@dialix.oz.au)
|
* 16 Feb 93 Julian Elischer (julian@dialix.oz.au)
|
||||||
*
|
*
|
||||||
* $Id: cdio.h,v 1.8 1995/05/30 08:14:11 rgrimes Exp $
|
* $Id: cdio.h,v 1.9 1996/01/30 02:56:08 mpp Exp $
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
<1> Fixed a conflict with ioctl usage. There were two different
|
<1> Fixed a conflict with ioctl usage. There were two different
|
||||||
|
@ -32,7 +32,7 @@ union msf_lba {
|
||||||
unsigned char second;
|
unsigned char second;
|
||||||
unsigned char frame;
|
unsigned char frame;
|
||||||
} msf;
|
} msf;
|
||||||
int lba;
|
int lba; /* network byte order */
|
||||||
u_char addr[4];
|
u_char addr[4];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue