summaryrefslogtreecommitdiff
path: root/src/lib/environment_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/environment_info.cc')
-rw-r--r--src/lib/environment_info.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/environment_info.cc b/src/lib/environment_info.cc
index d10e23727..364973ff8 100644
--- a/src/lib/environment_info.cc
+++ b/src/lib/environment_info.cc
@@ -109,7 +109,7 @@ environment_info (shared_ptr<Log> log)
info.dwOSVersionInfoSize = sizeof (info);
GetVersionEx (&info);
LOG_GENERAL ("Windows version %1.%2.%3 SP %4", info.dwMajorVersion, info.dwMinorVersion, info.dwBuildNumber, info.szCSDVersion);
-#endif
+#endif
#if __GNUC__
#if __x86_64__
@@ -118,7 +118,7 @@ environment_info (shared_ptr<Log> log)
LOG_GENERAL_NC ("Built for 32-bit");
#endif
#endif
-
+
LOG_GENERAL ("CPU: %1, %2 processors", cpu_info(), boost::thread::hardware_concurrency ());
list<pair<string, string> > const m = mount_info ();
for (list<pair<string, string> >::const_iterator i = m.begin(); i != m.end(); ++i) {