Ignore:
Timestamp:
Jul 22, 2010, 2:48:11 PM (15 years ago)
Author:
pr
Message:

Replace #define with variable.

File:
1 edited

Legend:

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

    r238 r388  
    332332int TREEENTRY treeCompareStrings(unsigned long  ul1, unsigned long ul2)
    333333{
    334     #define p1 (const char*)(ul1)
    335     #define p2 (const char*)(ul2)
     334    const char *p1 = (const char*) ul1;
     335    const char *p2 = (const char*) ul2;
    336336
    337337    if (p1 && p2)
Note: See TracChangeset for help on using the changeset viewer.