From: Anatol Belski Date: Fri, 28 Apr 2017 12:03:06 +0000 (+0200) Subject: use char* as we don't compile with UNICODE anyway X-Git-Tag: php-7.2.0alpha2~15^2~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f708f0bb72b182ae371156435c4a00586dca06d7;p=php use char* as we don't compile with UNICODE anyway --- diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c index bb277b484b..b9a4ec9814 100644 --- a/TSRM/tsrm_win32.c +++ b/TSRM/tsrm_win32.c @@ -110,7 +110,7 @@ TSRM_API void tsrm_win32_shutdown(void) char * tsrm_win32_get_path_sid_key(const char *pathname, size_t pathname_len, size_t *key_len) { PSID pSid = TWG(impersonation_token_sid); - TCHAR *ptcSid = NULL; + char *ptcSid = NULL; char *bucket_key = NULL; size_t ptc_sid_len;