From 4987fd568db984561b4b557cfc2172656c3edbc0 Mon Sep 17 00:00:00 2001 From: q66 Date: Tue, 7 Mar 2017 22:55:05 +0100 Subject: [PATCH] windows typo fix --- ostd/internal/context.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ostd/internal/context.hh b/ostd/internal/context.hh index f6d02e3..ff0da53 100644 --- a/ostd/internal/context.hh +++ b/ostd/internal/context.hh @@ -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); }