mirror of
https://github.com/brechtsanders/xlsxio
synced 2025-03-28 21:13:24 +00:00
Explicitly cast to time_t to avoid MSVC warning
This commit is contained in:
parent
ada2aaf179
commit
50689bd08d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user