uint zu unsigned int

bugfix
Jan Wild 2024-12-16 09:40:34 +01:00
parent 0c27b315a9
commit 4acaefdd42
No known key found for this signature in database
GPG Key ID: 0BCB2E053F2192BB
1 changed files with 3 additions and 2 deletions

View File

@ -15,14 +15,15 @@
#include <string.h>
#include <time.h>
#ifdef _WIN32
_WIN32 #define ctime_r(T, Tm)(localtime_s(Tm, T) ? NULL : Tm)
#define localtime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
#endif /* ifdef _WIN32 */
const uint intervalLen = 45; // min
const uint pauseLen = 10; //
const unsigned int intervalLen = 45; // min
const unsigned int pauseLen = 10; //
const char taskFormat[] =
"Task { %.64s = {\n created={%lu},\n deadline={%lu},\n "