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/tag | |
parent | fbc4bb29dcc471a08e47f10ffaa24ad8da6d40a2 (diff) | |
parent | f1ef9f9d31c71857db021029326715028a217906 (diff) |
Merge branch 'v0.20.x'
Diffstat (limited to 'src/tag')
-rw-r--r-- | src/tag/Format.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tag/Format.cxx b/src/tag/Format.cxx index 09b6065a4..d8aa2f3f3 100644 --- a/src/tag/Format.cxx +++ b/src/tag/Format.cxx @@ -87,7 +87,7 @@ TagGetter(const void *object, const char *name) noexcept if (strcmp(name, "iso8601") == 0) { time_t t = time(nullptr); -#ifdef WIN32 +#ifdef _WIN32 const struct tm *tm2 = gmtime(&t); #else struct tm tm; @@ -97,7 +97,7 @@ TagGetter(const void *object, const char *name) noexcept return ""; strftime(ctx.buffer, sizeof(ctx.buffer), -#ifdef WIN32 +#ifdef _WIN32 /* kludge: use underscore instead of colon on Windows because colons are not allowed in file names, and this library is mostly |