diff options
author | Max Kellermann <max@musicpd.org> | 2017-12-16 20:50:53 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-12-16 20:56:06 +0100 |
commit | 6246d36fe6503e6bed3bca6aa5ca783c6188d76f (patch) | |
tree | 51521bbb43bc2bbbc34a14c393a0f65880aabbbc /src/Stats.cxx | |
parent | fbc4bb29dcc471a08e47f10ffaa24ad8da6d40a2 (diff) | |
parent | f1ef9f9d31c71857db021029326715028a217906 (diff) |
Merge branch 'v0.20.x'
Diffstat (limited to 'src/Stats.cxx')
-rw-r--r-- | src/Stats.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Stats.cxx b/src/Stats.cxx index 43988bbbc..c80136f85 100644 --- a/src/Stats.cxx +++ b/src/Stats.cxx @@ -32,7 +32,7 @@ #include <chrono> -#ifndef WIN32 +#ifndef _WIN32 /** * The monotonic time stamp when MPD was started. It is used to * calculate the uptime. @@ -115,7 +115,7 @@ stats_print(Response &r, const Partition &partition) { r.Format("uptime: %u\n" "playtime: %lu\n", -#ifdef WIN32 +#ifdef _WIN32 GetProcessUptimeS(), #else (unsigned)std::chrono::duration_cast<std::chrono::seconds>(std::chrono::steady_clock::now() - start_time).count(), |