From 93ae73adbc4643d9f4b6da729456104d47f79432 Mon Sep 17 00:00:00 2001 From: vitaut Date: Mon, 16 Mar 2015 09:05:46 -0700 Subject: [PATCH] Fix a typo --- test/posix-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/posix-test.cc b/test/posix-test.cc index 61d95c85..e1690841 100644 --- a/test/posix-test.cc +++ b/test/posix-test.cc @@ -112,7 +112,7 @@ DWORD test::GetFileSize(HANDLE hFile, LPDWORD lpFileSizeHigh) { } if (fstat_sim == MAX_SIZE) { DWORD max = std::numeric_limits::max(); - *lpFileSizeHig = max >> 1; + *lpFileSizeHigh = max >> 1; return max; } return ::GetFileSize(hFile, lpFileSizeHigh);