Ignore:
Timestamp:
Dec 24, 2002, 8:44:35 AM (23 years ago)
Author:
umoeller
Message:

Misc fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/linklist.c

    r232 r238  
    113113void* lstMalloc(size_t size)
    114114{
    115     return (malloc(size));
     115    return malloc(size);
    116116}
    117117
     
    128128void* lstStrDup(const char *pcsz)
    129129{
    130     return (strdup(pcsz));
     130    return strdup(pcsz);
    131131}
    132132
     
    521521    PLISTNODE pNode;
    522522    if (pNode = lstNodeFromIndex(pList, ulIndex))
    523         return (pNode->pItemData);
    524     else
    525         return (0);
     523        return pNode->pItemData;
     524
     525    return NULL;
    526526}
    527527
Note: See TracChangeset for help on using the changeset viewer.