# HG changeset patch # User Andre Heinecke # Date 1460374619 -7200 # Node ID 53090844eddd2a685965bc6e7183268526b9a2de # Parent 000824f6f683531e28401bd48b5ed8d47ebdc130 Fix check for windows in strhelp.h to work with strange mingw versions diff -r 000824f6f683 -r 53090844eddd src/strhelp.h --- a/src/strhelp.h Mon Apr 11 13:36:36 2016 +0200 +++ b/src/strhelp.h Mon Apr 11 13:36:59 2016 +0200 @@ -132,7 +132,7 @@ int str_base64_decode(char **dst, size_t *dst_size, char *src, size_t src_size); -#ifdef WIN32 +#ifdef _WIN32 /** @brief convert a utf8 string to utf16 wchar *