Changeset 30 in libcf


Ignore:
Timestamp:
02/04/13 23:42:27 (11 years ago)
Author:
cheese
Message:

#1 fix some doxygen comment error

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/cf_debug.h

    r29 r30  
    240240 *
    241241 * @param ctx   디버그 컨텍스트
     242 * @param file  파일 경로
     243 * @param func  함수 이름
     244 * @param line  라인 넘버
    242245 * @param fmt   포맷 스트링
    243246 * @param ...   가변 인자
     
    258261 *
    259262 * @param ctx   디버그 컨텍스트
     263 * @param file  파일 경로
     264 * @param func  함수 이름
     265 * @param line  라인 넘버
    260266 * @param bin   바이너리 데이터
    261267 * @param len   바이너리 길이
  • trunk/src/cf_log.c

    r29 r30  
    4848    int sec;
    4949    int usec;
    50 } S_CF_Log_DateTime, CF_Log_DateTime;
     50} S_CF_LOG_DATETIME, CF_LOG_DATETIME;
    5151
    5252typedef struct __cf_log_ctx__ {
     
    122122
    123123static int
    124 CF_Log_Local_GetTime (CF_Log_DateTime * dt)
     124CF_Log_Local_GetTime (CF_LOG_DATETIME * dt)
    125125{
    126126    struct timeval  timeVal;
     
    147147CF_Log_Local_GetTimeString (char * buffer)
    148148{
    149     CF_Log_DateTime dt;
     149    CF_LOG_DATETIME dt;
    150150    CF_Log_Local_GetTime (&dt);
    151151
Note: See TracChangeset for help on using the changeset viewer.