kernel32: Fixed mismatched bracket (Coverity).

This commit is contained in:
Marcus Meissner 2011-02-23 05:21:42 +01:00 committed by Alexandre Julliard
parent c4337f1e33
commit b42c593f67
1 changed files with 1 additions and 1 deletions

View File

@ -927,7 +927,7 @@ static void test_LoopbackRead(HANDLE hcom)
i=0;
do
{
res = ReadFile(hcom, rbuf+read, sizeof(rbuf-read), &read1, NULL);
res = ReadFile(hcom, rbuf+read, sizeof(rbuf)-read, &read1, NULL);
ok(res, "Readfile failed\n");
read += read1;
i++;