1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-31 02:43:06 +03:00

Use _WIN32 macro instead of WIN32

_WIN32 is defined automatically by the compiler.
This commit is contained in:
Nick Wellnhofer
2017-10-25 18:22:52 +02:00
parent ba764e239b
commit 0beb813d64
17 changed files with 27 additions and 27 deletions

View File

@ -594,7 +594,7 @@ main(int argc, char **argv)
(!strcmp(argv[i], "-output")) ||
(!strcmp(argv[i], "--output"))) {
i++;
#if defined(WIN32) || defined (__CYGWIN__)
#if defined(_WIN32) || defined (__CYGWIN__)
output = (char *) xmlCanonicPath((xmlChar *) argv[i]);
if (output == NULL)
#endif