Changeset 438 for trunk/dll


Ignore:
Timestamp:
Aug 24, 2006, 6:44:57 AM (19 years ago)
Author:
root
Message:

Correct Runtime_Error line number report

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/wrappers.c

    r400 r438  
    1010  22 Jul 06 SHL Baseline
    1111  29 Jul 06 SHL Add xgets_stripped
     12  18 Aug 06 SHL Correct Runtime_Error line number report
    1213
    1314***********************************************************************/
     
    4445PSZ xfgets_bstripcr(PSZ pszBuf, size_t cMaxBytes, FILE *fp, PCSZ pszSrcFile, UINT uiLineNumber)
    4546{
    46   PSZ psz = xfgets(pszBuf,cMaxBytes,fp,pszSrcFile,__LINE__);
     47  PSZ psz = xfgets(pszBuf,cMaxBytes,fp,pszSrcFile,uiLineNumber);
    4748  if (psz)
    4849    bstripcr(psz);
Note: See TracChangeset for help on using the changeset viewer.