Changeset 2307


Ignore:
Timestamp:
Sep 23, 2008 9:11:20 AM (15 years ago)
Author:
bennylp
Message:

More ticket #639: fixed warning with gcc about comparison always true

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/ctype.h

    r2302 r2307  
    6363 *              an ASCII character. 
    6464 */ 
    65 PJ_INLINE(int) pj_isascii(unsigned char c) { return c<128 && c>=0; } 
     65PJ_INLINE(int) pj_isascii(unsigned char c) { return c<128; } 
    6666 
    6767/**  
Note: See TracChangeset for help on using the changeset viewer.