Changeset 143 in libcf


Ignore:
Timestamp:
07/19/13 18:09:34 (11 years ago)
Author:
cheese
Message:

#1 modify bitwise-test-code and logging-function-name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/cf_log.c

    r142 r143  
    293293 */
    294294static int
    295 CF_Log_WriteVA (CF_Log_Ctx  ctx,
    296                 const char  * prefix,
    297                 const char  * fmt,
    298                 va_list     valist)
     295CF_Log_Local_WriteVA (CF_Log_Ctx    ctx,
     296                      const char    * prefix,
     297                      const char    * fmt,
     298                      va_list       valist)
    299299{
    300300#define BUF_LEN 16 * 1024
     
    337337
    338338    va_start (valist, fmt);
    339     result = CF_Log_WriteVA (ctx, prefix, fmt, valist);
     339    result = CF_Log_Local_WriteVA (ctx, prefix, fmt, valist);
    340340    va_end (valist);
    341341
     
    692692
    693693    va_start (valist, fmt);
    694     result = CF_Log_WriteVA (ctx, prefix, fmt, valist);
     694    result = CF_Log_Local_WriteVA (ctx, prefix, fmt, valist);
    695695    va_end (valist);
    696696
Note: See TracChangeset for help on using the changeset viewer.