diff options
author | pixel <pixel> | 2003-12-11 16:53:42 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-12-11 16:53:42 +0000 |
commit | bacf50104daa09cd90f8dc36c06a6982d91000af (patch) | |
tree | 863ace96383ca62afc109bfca550dc64e59ce99d /lib/cdutils.cpp | |
parent | 5695a4b1e91154f8b9bae6d62eb9313b973fc6bd (diff) |
Linux ports
Diffstat (limited to 'lib/cdutils.cpp')
-rw-r--r-- | lib/cdutils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cdutils.cpp b/lib/cdutils.cpp index 685d0f1..82e460a 100644 --- a/lib/cdutils.cpp +++ b/lib/cdutils.cpp @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: cdutils.cpp,v 1.18 2003-12-10 02:59:31 pixel Exp $ */ +/* $Id: cdutils.cpp,v 1.19 2003-12-11 16:53:43 pixel Exp $ */ #include <stdio.h> #include <string.h> @@ -834,7 +834,7 @@ cdfile::~cdfile() { ssize_t cdfile::read(void *buf, size_t count) throw (GeneralException) { Byte buffer[2352]; - size_t startsec, nsec, startbyte, nstartbytes; + size_t startsec, startbyte, nstartbytes; count = MIN(count, (size_t) (size - itell)); |