Ignore:
Timestamp:
Sep 2, 2007, 11:40:41 PM (18 years ago)
Author:
bird
Message:

error code cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/kLdr/kLdrModLX.c

    r3578 r3579  
    273273    pModLX = (PKLDRMODLX)kHlpAlloc(cb);
    274274    if (!pModLX)
    275         return KLDR_ERR_NO_MEMORY;
     275        return KERR_NO_MEMORY;
    276276    *ppModLX = pModLX;
    277277
     
    938938    pv = kHlpAlloc(pModLX->Hdr.e32_fixupsize);
    939939    if (!pv)
    940         return KLDR_ERR_NO_MEMORY;
     940        return KERR_NO_MEMORY;
    941941
    942942    off = pModLX->Hdr.e32_objtab + pModLX->Hdr.e32_ldrsize;
     
    12161216        if (cchName)
    12171217            pszName[cchName - 1] = '\0';
    1218         rc = KLDR_ERR_BUFFER_OVERFLOW;
     1218        rc = KERR_BUFFER_OVERFLOW;
    12191219    }
    12201220
Note: See TracChangeset for help on using the changeset viewer.