diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-08-02 16:57:09 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-08-02 16:57:09 +0000 |
commit | 2cf59d57b780d3fa8a0d4dd261ac73eb2a4e4060 (patch) | |
tree | 1c842c4a1dda0d330ce0f0771b7b5e819fdcc15c /plugins/Pcre16 | |
parent | e82bfee6d62bce298ae1f69653470969f8c2a8ca (diff) |
type fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@10025 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Pcre16')
-rw-r--r-- | plugins/Pcre16/src/pcre.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Pcre16/src/pcre.h b/plugins/Pcre16/src/pcre.h index 7fcea56f4c..0c4d524576 100644 --- a/plugins/Pcre16/src/pcre.h +++ b/plugins/Pcre16/src/pcre.h @@ -343,7 +343,7 @@ typedef struct real_pcre32_jit_stack pcre32_jit_stack; a 16 bit wide signed data type. Otherwise it can be a dummy data type since
pcre16 functions are not implemented. There is a check for this in pcre_internal.h. */
#ifndef PCRE_UCHAR16
-#define PCRE_UCHAR16 unsigned short
+#define PCRE_UCHAR16 wchar_t
#endif
#ifndef PCRE_SPTR16
|