Changeset 85 in libcf for trunk/src/cf_thread.c


Ignore:
Timestamp:
05/03/13 11:16:57 (11 years ago)
Author:
cheese
Message:

#1 modify assertion logic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/cf_thread.c

    r84 r85  
    2424#endif // #if defined(_WIN32) || defined(_WIN64)
    2525
    26 #define ASSERT_THREAD(__h)              \
    27     if (__h == NULL)                    \
     26#define ASSERT_THREAD(__h)  \
     27    if (__h == NULL)        \
    2828        return CF_ERROR_THREAD_INVALID_ARGS
    2929
    30 #define ASSERT_MUTEX(__h)               \
    31     if (__h == NULL)                    \
     30#define ASSERT_MUTEX(__h)   \
     31    if (__h == NULL)        \
    3232        return CF_ERROR_MUTEX_INVALID_ARGS
    3333
Note: See TracChangeset for help on using the changeset viewer.