diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-13 00:38:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-13 21:22:37 +0100 |
| commit | e7cd5e4ee467386ff579a76c5f6a6fee03a78fc4 (patch) | |
| tree | 2d5e0d36b89bbfdc4503102ba89eb6ce902eaeb4 /src/lib/environment_info.cc | |
| parent | e1255543b0c280b71db51b47f50e5a3573e45970 (diff) | |
Windows build fixes.
Diffstat (limited to 'src/lib/environment_info.cc')
| -rw-r--r-- | src/lib/environment_info.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/environment_info.cc b/src/lib/environment_info.cc index b5093e4d6..4cdadafb6 100644 --- a/src/lib/environment_info.cc +++ b/src/lib/environment_info.cc @@ -113,8 +113,8 @@ environment_info () GetVersionEx (&os_info); info.push_back ( String::compose ( - "Windows version %1.%2.%3 SP %4", - os_info.dwMajorVersion, os_info.dwMinorVersion, os_info.dwBuildNumber, os_info.szCSDVersion + "Windows version %1.%2.%3", + (int) os_info.dwMajorVersion, (int) os_info.dwMinorVersion, (int) os_info.dwBuildNumber ) ); #endif |
