Ignore:
Timestamp:
Oct 21, 2013 6:37:30 AM (11 years ago)
Author:
ming
Message:

Re #1630 (misc):
Fixed compiler warnings. Thanks to Mark Michelson for the patch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/log.c

    r4613 r4624  
    108108} 
    109109 
    110 static int log_get_raw_indent() 
     110static int log_get_raw_indent(void) 
    111111{ 
    112112    return (long)(pj_ssize_t)pj_thread_local_get(thread_indent_tls_id); 
     
    120120} 
    121121 
    122 static int log_get_raw_indent() 
     122static int log_get_raw_indent(void) 
    123123{ 
    124124    return log_indent; 
     
    126126#endif  /* PJ_LOG_ENABLE_INDENT && PJ_HAS_THREADS */ 
    127127 
    128 static int log_get_indent() 
     128static int log_get_indent(void) 
    129129{ 
    130130    int indent = log_get_raw_indent(); 
Note: See TracChangeset for help on using the changeset viewer.