Merge pull request #131 from vslavik/msvc-fixes

Compilation and warnings fixes for modern MSVC
This commit is contained in:
Brecht Sanders 2024-07-24 09:36:38 +02:00 committed by GitHub
commit de9d53a842
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

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;

View File

@ -47,7 +47,9 @@ typedef struct zip_source zip_source_t;
#if defined(_MSC_VER)
# undef DLL_EXPORT_XLSXIO
# define DLL_EXPORT_XLSXIO
# define va_copy(dst,src) ((dst) = (src))
# ifndef va_copy
# define va_copy(dst,src) ((dst) = (src))
# endif
#endif
#ifdef _WIN32

View File

@ -8,7 +8,7 @@ int main (int argc, char* argv[])
if (argc <= 1)
return 0;
unlink(argv[1]);
if ((handle = xlsxiowrite_open(argv[1])) == NULL) {
if ((handle = xlsxiowrite_open(argv[1], NULL)) == NULL) {
fprintf(stderr, "Error creating zip file\n");
return 1;
}