ntfs_attr_pread: fix wrong variable type (Jean-Pierre Andre)

master
szaka 2009-03-18 00:56:28 +00:00
parent 647d06a434
commit bf661570a5
1 changed files with 1 additions and 1 deletions

View File

@ -958,7 +958,7 @@ rl_err_out:
*/
s64 ntfs_attr_pread(ntfs_attr *na, const s64 pos, s64 count, void *b)
{
int ret;
s64 ret;
if (!na || !na->ni || !na->ni->vol || !b || pos < 0 || count < 0) {
errno = EINVAL;