Skip to content
Snippets Groups Projects
Commit cea188d0 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix reversed logic of previous commit.

parent d2f5d551
No related branches found
No related tags found
No related merge requests found
Pipeline #5628 failed
...@@ -2296,9 +2296,9 @@ static time_t parseDateTime(const char* value) ...@@ -2296,9 +2296,9 @@ static time_t parseDateTime(const char* value)
return t; return t;
#if defined __BORLANDC__ #if defined __BORLANDC__
return((time_t)strtoull(value,NULL,0));
#else
return((time_t)strtoul(value,NULL,0)); return((time_t)strtoul(value,NULL,0));
#else
return((time_t)strtoull(value,NULL,0));
#endif #endif
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment