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/tree.c

    r222 r238  
    218218 +                         p,                   // new tree node
    219219 +                         fnCompare);          // comparison func
    220  +              return (p);
     220 +              return p;
    221221 +          }
    222222 *
     
    226226 +          int TREEENTRY fnCompare(ULONG ul1, ULONG ul2)
    227227 +          {
    228  +              return (strcmp((const char*)ul1,
    229  +                             (const char*)ul2));
     228 +              return strcmp((const char*)ul1,
     229 +                            (const char*)ul2);
    230230 +          }
    231231 *
     
    760760        (*plCount)--;       // V0.9.16 (2001-10-19) [umoeller]
    761761
    762     return (STATUS_OK);
     762    return STATUS_OK;
    763763}
    764764
     
    999999    }
    10001000
    1001     return (papNodes);
     1001    return papNodes;
    10021002}
    10031003
Note: See TracChangeset for help on using the changeset viewer.