Ignore:
Timestamp:
Mar 23, 2006 6:04:15 PM (18 years ago)
Author:
bennylp
Message:

Fixed misc warnings/errors in Solaris build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsua/main.c

    r324 r355  
    318318 
    319319    /* Left trim */ 
    320     while (isspace(*buf)) { 
     320    while (pj_isspace(*buf)) { 
    321321        ++buf; 
    322322        --len; 
     
    330330        return; 
    331331 
    332     if (isdigit(*buf) || *buf=='-') { 
     332    if (pj_isdigit(*buf) || *buf=='-') { 
    333333         
    334334        int i; 
     
    340340 
    341341        for (; i<len; ++i) { 
    342             if (!isdigit(buf[i])) { 
     342            if (!pj_isdigit(buf[i])) { 
    343343                puts("Invalid input"); 
    344344                return; 
Note: See TracChangeset for help on using the changeset viewer.