msvcrt/tests: Fix _lseek arguments.

Signed-off-by: Daniel Lehman <dlehman@esri.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Daniel Lehman 2019-10-29 10:04:06 -07:00 committed by Alexandre Julliard
parent 71f7558206
commit 0357dfbc7e
1 changed files with 2 additions and 2 deletions

View File

@ -2548,7 +2548,7 @@ static void test__creat(void)
pos = _tell(fd);
ok(pos == 6, "expected pos 6 (text mode), got %d\n", pos);
}
ok(_lseek(fd, SEEK_SET, 0) == 0, "_lseek failed\n");
ok(_lseek(fd, 0, SEEK_SET) == 0, "_lseek failed\n");
count = _read(fd, buf, 6);
ok(count == 4, "_read returned %d, expected 4\n", count);
count = count > 0 ? count > 4 ? 4 : count : 0;
@ -2568,7 +2568,7 @@ static void test__creat(void)
pos = _tell(fd);
ok(pos == 4, "expected pos 4 (binary mode), got %d\n", pos);
}
ok(_lseek(fd, SEEK_SET, 0) == 0, "_lseek failed\n");
ok(_lseek(fd, 0, SEEK_SET) == 0, "_lseek failed\n");
count = _read(fd, buf, 6);
ok(count == 4, "_read returned %d, expected 4\n", count);
count = count > 0 ? count > 4 ? 4 : count : 0;