1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-30 03:56:45 +02:00
This commit is contained in:
Jfreegman
2014-06-23 18:54:48 -04:00
3 changed files with 37 additions and 24 deletions

View File

@ -55,7 +55,7 @@ struct tm *get_time(void)
{
struct tm *timeinfo;
uint64_t t = get_unix_time();
timeinfo = localtime(&t);
timeinfo = localtime((const time_t*)&t);
return timeinfo;
}