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:
@ -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
|
||||
|
Reference in New Issue
Block a user