summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/sys_info_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/sys_info_win.cc b/base/sys_info_win.cc
index 7690e81a..0c402b0 100644
--- a/base/sys_info_win.cc
+++ b/base/sys_info_win.cc
@@ -103,7 +103,7 @@ int SysInfo::DisplayCount() {
// static
size_t SysInfo::VMAllocationGranularity() {
SYSTEM_INFO sysinfo;
- GetSystemInfo(&info);
+ GetSystemInfo(&sysinfo);
return info.dwAllocationGranularity;
}