Ignore:
Timestamp:
Aug 25, 2007, 5:46:14 AM (18 years ago)
Author:
bird
Message:

errors and stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/kDbg/kDbgSymbol.cpp

    r3537 r3541  
    5656 *
    5757 * @returns 0 on success.
    58  * @returns KDBG_ERR_INVALID_POINTER if a NULL pointer or an !KDBG_VALID_PTR() is passed in.
     58 * @returns KERR_INVALID_POINTER if a NULL pointer or an !KDBG_VALID_PTR() is passed in.
    5959 *
    6060 * @param   pSymbol     The symbol to be freed.
     
    6363{
    6464    if (!pSymbol)
    65         return KDBG_ERR_INVALID_POINTER;
    66     kDbgAssertPtrReturn(pSymbol, KDBG_ERR_INVALID_POINTER);
     65        return KERR_INVALID_POINTER;
     66    kDbgAssertPtrReturn(pSymbol, KERR_INVALID_POINTER);
    6767
    6868    kDbgHlpFree(pSymbol);
Note: See TracChangeset for help on using the changeset viewer.