Update LoopData.h

This commit is contained in:
uNetworkingAB
2022-11-02 14:51:10 +01:00
committed by GitHub
parent a589d7d678
commit 25167386ff
+1 -1
View File
@@ -62,7 +62,7 @@ public:
void updateDate() {
time_t now = time(0);
struct tm tstruct;
tstruct = *gmtime(&now);
gmtime_s(&now, &tstruct);
strftime(date, 32, "%a, %d %b %Y %X GMT", &tstruct);
}