Changeset 1916 for trunk/dll/autoview.c


Ignore:
Timestamp:
Nov 1, 2025, 7:30:47 PM (43 hours ago)
Author:
Gregg Young
Message:

Fix easize so that EAs larger than 32767 show their actual size instead of 32767

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/autoview.c

    r1878 r1916  
    510510                    CommaFmtULL(szCmmaFmtFileSize,
    511511                                sizeof(szCmmaFmtFileSize),
    512                                 pffbFile->cbFile + CBLIST_TO_EASIZE(pffbFile->cbList),
     512                                pffbFile->cbFile + pffbFile->cbList == 65535 ? GetLargeEASize(pffbFile->achName) : CBLIST_TO_EASIZE(pffbFile->cbList),
    513513                                ' ');
    514514                    FDateFormat(szDate, pffbFile->fdateLastWrite);
Note: See TracChangeset for help on using the changeset viewer.