Ignore:
Timestamp:
May 10, 2006 7:24:40 PM (18 years ago)
Author:
bennylp
Message:

Merge-in RTEMS port patch by Phil Torre <ptorre@…>, alpha release.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pjlib-test/util.c

    r153 r433  
    2020#include <pjlib.h> 
    2121 
     22#define THIS_FILE "util.c" 
     23 
    2224void app_perror(const char *msg, pj_status_t rc) 
    2325{ 
    24     char errbuf[256]; 
     26    char errbuf[PJ_ERR_MSG_SIZE]; 
    2527 
    2628    PJ_CHECK_STACK(); 
    2729 
    2830    pj_strerror(rc, errbuf, sizeof(errbuf)); 
    29     PJ_LOG(1,("test", "%s: [pj_status_t=%d] %s", msg, rc, errbuf)); 
     31    PJ_LOG(3,("test", "%s: [pj_status_t=%d] %s", msg, rc, errbuf)); 
    3032} 
    3133 
Note: See TracChangeset for help on using the changeset viewer.