* callback.c (os_lseek): Call wrap on lseek result.

This commit is contained in:
Hans-Peter Nilsson
2010-10-06 23:45:44 +00:00
parent 7cf1d8af2f
commit 0bd15c7fb2
2 changed files with 5 additions and 1 deletions

View File

@@ -278,7 +278,7 @@ os_lseek (p, fd, off, way)
result = fdbad (p, fd);
if (result)
return result;
result = lseek (fdmap (p, fd), off, way);
result = wrap (p, lseek (fdmap (p, fd), off, way));
return result;
}