Skip to content
Snippets Groups Projects
Commit 05760b7f authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Use off64_t for large devices on 32-bit kernels.

Change-Id: Ie921a4fc9be4467c760dc13b8d1ed7edfc2ba8b0
parent 873988ad
No related branches found
No related tags found
No related merge requests found
......@@ -271,7 +271,7 @@ int DiskIO::DiskSync(void) {
// Note that seeking beyond the end of the file is NOT detected as a failure!
int DiskIO::Seek(uint64_t sector) {
int retval = 1;
off_t seekTo, sought;
off64_t seekTo, sought;
// If disk isn't open, try to open it....
if (!isOpen) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment