Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Unified Diff: base/sys_info_win.cc

Issue 18646: Windows fix: missed on the last one (Closed)
Patch Set: Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/sys_info_win.cc
diff --git a/base/sys_info_win.cc b/base/sys_info_win.cc
index 0c402b04de371820153aa74ae1435a211f6b5ef9..a1952046dba255c513294c602620d3ddc37e1706 100644
--- a/base/sys_info_win.cc
+++ b/base/sys_info_win.cc
@@ -105,7 +105,7 @@ size_t SysInfo::VMAllocationGranularity() {
SYSTEM_INFO sysinfo;
GetSystemInfo(&sysinfo);
- return info.dwAllocationGranularity;
+ return sysinfo.dwAllocationGranularity;
}
} // namespace base
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698