Drop unnecessary ULL qualifiers
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in -59m28s
Builds / ExectOS (amd64, release) (push) Successful in -59m30s
Builds / ExectOS (i686, debug) (push) Successful in -59m27s
Builds / ExectOS (i686, release) (push) Successful in -59m29s

This commit is contained in:
2026-05-06 20:09:54 +02:00
parent c5b0d15830
commit 100b58312f

View File

@@ -54,11 +54,11 @@
#define SHA1_DIGEST_SIZE 20 #define SHA1_DIGEST_SIZE 20
/* Time related definitions */ /* Time related definitions */
#define TIME_SECONDS_PER_MINUTE 60ULL #define TIME_SECONDS_PER_MINUTE 60
#define TIME_SECONDS_PER_HOUR 3600ULL #define TIME_SECONDS_PER_HOUR 3600
#define TIME_SECONDS_PER_DAY 86400ULL #define TIME_SECONDS_PER_DAY 86400
#define TIME_TICKS_PER_SECOND 10000000ULL #define TIME_TICKS_PER_SECOND 10000000
#define TIME_TICKS_PER_MILLISECOND 10000ULL #define TIME_TICKS_PER_MILLISECOND 10000
/* C/C++ specific code */ /* C/C++ specific code */