Ignore:
Timestamp:
Jan 8, 2000, 5:37:02 AM (26 years ago)
Author:
phaller
Message:

Fix: broken shell build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/shlfolder.cpp

    r2355 r2358  
    1 /* $Id: shlfolder.cpp,v 1.5 2000-01-08 02:43:27 phaller Exp $ */
     1/* $Id: shlfolder.cpp,v 1.6 2000-01-08 04:37:01 phaller Exp $ */
    22/*
    33 * Shell Folder stuff
     
    20662066           _ILSimpleGetText(pidl, szPath, MAX_PATH);
    20672067           GetDiskFreeSpaceExA(szPath, NULL, &ulBytes, NULL);
    2068            StrFormatByteSizeA(ulBytes.s.LowPart, psd->str.u.cStr, MAX_PATH);
     2068           StrFormatByteSizeA(ulBytes.LowPart, psd->str.u.cStr, MAX_PATH);
    20692069         }
    20702070         break;
     
    20742074           _ILSimpleGetText(pidl, szPath, MAX_PATH);
    20752075           GetDiskFreeSpaceExA(szPath, &ulBytes, NULL, NULL);
    2076            StrFormatByteSizeA(ulBytes.s.LowPart, psd->str.u.cStr, MAX_PATH);
     2076           StrFormatByteSizeA(ulBytes.LowPart, psd->str.u.cStr, MAX_PATH);
    20772077         }
    20782078         break;
Note: See TracChangeset for help on using the changeset viewer.