Ignore:
Timestamp:
Aug 6, 2010 7:18:08 AM (14 years ago)
Author:
nanang
Message:

Misc (re #1068): fix compile errors/warnings on Symbian S60 5th ed.

File:
1 edited

Legend:

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

    r2992 r3255  
    218218    /* Build the title */ 
    219219    len = pj_ansi_vsnprintf(titlebuf, sizeof(titlebuf), title_fmt, marker); 
    220     if (len < 0 || len >= sizeof(titlebuf)) 
     220    if (len < 0 || len >= (int)sizeof(titlebuf)) 
    221221        pj_ansi_strcpy(titlebuf, "Error"); 
    222222 
Note: See TracChangeset for help on using the changeset viewer.