2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

64-bit fixes.

Patch from Andreas Fredriksson.


[SVN r34086]
This commit is contained in:
Vladimir Prus
2006-05-25 08:14:30 +00:00
parent 65ff7464a7
commit 65f3f30ff9

View File

@@ -287,11 +287,11 @@ path_parent( PATHNAME *f )
DWORD ShortPathToLongPath(LPCTSTR lpszShortPath,LPTSTR lpszLongPath,DWORD
cchBuffer)
{
DWORD i=0;
LONG i=0;
TCHAR path[_MAX_PATH]={0};
TCHAR ret[_MAX_PATH]={0};
DWORD pos=0, prev_pos=0;
DWORD len=_tcslen(lpszShortPath);
LONG pos=0, prev_pos=0;
LONG len=_tcslen(lpszShortPath);
/* Is the string valid? */
if (!lpszShortPath) {