Add comment: reflect the fact that lba stored in network byte order

This commit is contained in:
Andrey A. Chernov 1996-02-01 16:16:11 +00:00
parent e48413a02e
commit ff60dd409f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13819

View file

@ -1,7 +1,7 @@
/*
* 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
@ -32,7 +32,7 @@ union msf_lba {
unsigned char second;
unsigned char frame;
} msf;
int lba;
int lba; /* network byte order */
u_char addr[4];
};