Ignore:
Timestamp:
Feb 7, 2006 7:01:58 PM (18 years ago)
Author:
bennylp
Message:

Fixed Makefile and warnings in cygwin/mingw

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/include/pjlib-util/scanner_cis_uint.h

    r73 r142  
    5757 * @param c         The character. 
    5858 */ 
    59 #define PJ_CIS_SET(cis,c)   ((cis)->cis_buf[(c)] = 1) 
     59#define PJ_CIS_SET(cis,c)   ((cis)->cis_buf[(int)(c)] = 1) 
    6060 
    6161/** 
     
    6666 * @param c         The character to be removed from the membership. 
    6767 */ 
    68 #define PJ_CIS_CLR(cis,c)   ((cis)->cis_buf[c] = 0) 
     68#define PJ_CIS_CLR(cis,c)   ((cis)->cis_buf[(int)c] = 0) 
    6969 
    7070/** 
     
    7575 * @param c         The character. 
    7676 */ 
    77 #define PJ_CIS_ISSET(cis,c) ((cis)->cis_buf[c]) 
     77#define PJ_CIS_ISSET(cis,c) ((cis)->cis_buf[(int)c]) 
    7878 
    7979 
Note: See TracChangeset for help on using the changeset viewer.