From ff60dd409fd860126096571de87e3db2819520ca Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Thu, 1 Feb 1996 16:16:11 +0000 Subject: [PATCH] Add comment: reflect the fact that lba stored in network byte order --- sys/sys/cdio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/cdio.h b/sys/sys/cdio.h index b9cba3e823b3..b0e2fca31ae3 100644 --- a/sys/sys/cdio.h +++ b/sys/sys/cdio.h @@ -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]; };