diff --git a/doc/xml/release.xml b/doc/xml/release.xml index a72065078..71883b7d5 100644 --- a/doc/xml/release.xml +++ b/doc/xml/release.xml @@ -73,8 +73,11 @@ - - + + + + + diff --git a/src/command/backup/backup.c b/src/command/backup/backup.c index 5bf2c15fc..56a5a0d3d 100644 --- a/src/command/backup/backup.c +++ b/src/command/backup/backup.c @@ -442,7 +442,7 @@ backupBlockIncrMap(void) ManifestBlockIncrAgeMap manifestBuildBlockIncrAgeMap = { - .fileAge = varUIntForce(mapKey) * (unsigned int)SEC_PER_DAY, + .fileAge = (unsigned int)(varUIntForce(mapKey) * SEC_PER_DAY), .blockMultiplier = varUIntForce(kvGet(manifestBlockIncrAgeKv, mapKey)), }; diff --git a/src/command/info/info.c b/src/command/info/info.c index 3ce2b2fa2..9f40f8e68 100644 --- a/src/command/info/info.c +++ b/src/command/info/info.c @@ -849,7 +849,7 @@ formatTextBackupDateTime(const time_t epoch) strCatChr(result, '-'); } - const unsigned int minute = (unsigned int)offset / 60; + const unsigned int minute = (unsigned int)(offset / 60); const unsigned int hour = minute / 60; strCatFmt(result, "%02u", hour);