Explicitly cast to time_t to avoid MSVC warning

This commit is contained in:
Václav Slavík 2024-07-24 09:19:38 +02:00
parent ada2aaf179
commit 50689bd08d

View File

@ -1625,7 +1625,7 @@ DLL_EXPORT_XLSXIO int xlsxioread_sheet_next_cell_datetime (xlsxioreadersheet she
if (value != 0) {
value = (value - 25569) * 86400; //conversion from Excel to Unix timestamp
}
*pvalue = value;
*pvalue = (time_t)value;
}
free(result);
return 1;