Changeset 87 in libcf for trunk/src/cf_log.c


Ignore:
Timestamp:
05/11/13 00:42:10 (11 years ago)
Author:
cheese
Message:

#1 ..arrange some DIFFICULT ternary operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/cf_log.c

    r86 r87  
    394394             ? LOG_BUFFER_DEFAULT_SIZE
    395395             : memsize;
     396
    396397    CF_LOG_CTX  * context = NULL;
    397398
     
    426427            context->size = (size_t) size;
    427428        }
     429
     430        *ctx = (CF_Log_Ctx) context;
    428431    }
    429432    CATCH_IF (result < 0)
    430433    {
    431434        CF_Log_DestroyCtx ((CF_Log_Ctx) context);
    432         return result;
    433     }
    434 
    435     *ctx = (CF_Log_Ctx) context;
     435    }
    436436
    437437    return CF_OK;
     
    674674        return result;
    675675
    676     result = (flag == CF_TRUE)
    677            ? CF_Log_SetMultiThread (ctx)
    678            : CF_Log_UnsetMultiThread (ctx);
     676    if (flag)
     677        result = CF_Log_SetMultiThread (ctx);
     678    else
     679        result = CF_Log_UnsetMultiThread (ctx);
    679680
    680681    return result;
Note: See TracChangeset for help on using the changeset viewer.