From 85a95ef89733f5908ec862d700d57bfd2c37317f Mon Sep 17 00:00:00 2001 From: emeric Date: Wed, 16 Dec 2020 11:53:59 +0100 Subject: [PATCH] Fixed 32 bits build --- src/libs/subsonic/impl/SubsonicResource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/subsonic/impl/SubsonicResource.cpp b/src/libs/subsonic/impl/SubsonicResource.cpp index 887f7ecf..610adf85 100644 --- a/src/libs/subsonic/impl/SubsonicResource.cpp +++ b/src/libs/subsonic/impl/SubsonicResource.cpp @@ -53,7 +53,7 @@ using namespace Database; static const std::string genreClusterName {"GENRE"}; static const std::string reportedStarredDate {"2000-01-01T00:00:00"}; static const std::string reportedDummyDate {"2000-01-01T00:00:00"}; -static const unsigned long reportedDummyDateULong {946684800000UL}; // 2000-01-01T00:00:00 UTC +static const unsigned long long reportedDummyDateULong {946684800000ULL}; // 2000-01-01T00:00:00 UTC namespace API::Subsonic {