mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-28 11:48:36 -06:00
ERR: Remove warning on FreeBSD
This commit is contained in:
@@ -2001,7 +2001,7 @@ CURLcode ftp_perform(struct connectdata *conn,
|
||||
struct tm *tm;
|
||||
#ifdef HAVE_LOCALTIME_R
|
||||
struct tm buffer;
|
||||
tm = (struct tm *)localtime_r(&data->info.filetime, &buffer);
|
||||
tm = (struct tm *)localtime_r((time_t*)&data->info.filetime, &buffer);
|
||||
#else
|
||||
tm = localtime((time_t *)&data->info.filetime);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user