Commit d865d1d9 authored by David S. Miller's avatar David S. Miller

drivers/ide/ide-proc.c: u64 != long long

parent 42f39d72
...@@ -548,7 +548,7 @@ int proc_ide_read_capacity ...@@ -548,7 +548,7 @@ int proc_ide_read_capacity
len = sprintf(page, "(none)\n"); len = sprintf(page, "(none)\n");
else else
len = sprintf(page,"%llu\n", len = sprintf(page,"%llu\n",
(u64) ((ide_driver_t *)drive->driver)->capacity(drive)); (long long) ((ide_driver_t *)drive->driver)->capacity(drive));
PROC_IDE_READ_RETURN(page,start,off,count,eof,len); PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment