windows typo fix

master
Daniel Kolesa 2017-03-07 22:55:05 +01:00
parent c526f12b81
commit 4987fd568d
1 changed files with 2 additions and 2 deletions

View File

@ -134,8 +134,8 @@ protected:
#if defined(OSTD_PLATFORM_WIN32)
inline size_t context_get_page_size() {
SYSTEM_INFO i;
GetSystemInfo(&i);
SYSTEM_INFO si;
GetSystemInfo(&si);
return size_t(si.dwPageSize);
}