]> git.stg.codes - stg.git/blobdiff - projects/stargazer/users_impl.cpp
Fight CLang warnings.
[stg.git] / projects / stargazer / users_impl.cpp
index 5bf082ec5695e300f411d67f385de52d72700f40..b0f6c2bd741fa11b4e8a6c936933ed241b01b73a 100644 (file)
@@ -450,7 +450,7 @@ void UsersImpl::DayResetTraff(const struct tm & t1)
 auto dayResetTraff = settings->GetDayResetTraff();
 if (dayResetTraff == 0)
     dayResetTraff = DaysInCurrentMonth();
-if (t1.tm_mday == dayResetTraff)
+if (static_cast<unsigned>(t1.tm_mday) == dayResetTraff)
     {
     printfd(__FILE__, "ResetTraff\n");
     for_each(users.begin(), users.end(), [](auto& user){ user.ProcessNewMonth(); });