ICU-6540 Get toolutil.c compiled on Windows with UNICODE defined

X-SVN-Rev: 26196
This commit is contained in:
Jungshik Shin 2009-06-29 17:46:22 +00:00
parent 23b175e17f
commit 93cc7aa2ed

View File

@ -66,7 +66,7 @@ U_CAPI const char * U_EXPORT2
getLongPathname(const char *pathname) {
#ifdef U_WINDOWS
/* anticipate problems with "short" pathnames */
static WIN32_FIND_DATA info;
static WIN32_FIND_DATAA info;
HANDLE file=FindFirstFileA(pathname, &info);
if(file!=INVALID_HANDLE_VALUE) {
if(info.cAlternateFileName[0]!=0) {