From c6322cda1881a4d7259df5f4a23d21a94a7bf7a4 Mon Sep 17 00:00:00 2001 From: emeric Date: Wed, 16 Dec 2020 09:08:23 +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 4a010378..887f7ecf 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 {946684800000}; // 2000-01-01T00:00:00 UTC +static const unsigned long reportedDummyDateULong {946684800000UL}; // 2000-01-01T00:00:00 UTC namespace API::Subsonic {