summaryrefslogtreecommitdiff
path: root/pjlib/src/pj/errno.c
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2010-08-06 07:18:08 +0000
committerNanang Izzuddin <nanang@teluu.com>2010-08-06 07:18:08 +0000
commit18fac5458c89f62ce713f669560536cfaba3efe2 (patch)
treef3653d3b78c78cafcae3bf16e10f466224193c1a /pjlib/src/pj/errno.c
parent6938680706bd20311a32ce476570c0cf44ee1ba3 (diff)
Misc (re #1068): fix compile errors/warnings on Symbian S60 5th ed.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3255 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/src/pj/errno.c')
-rw-r--r--pjlib/src/pj/errno.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/src/pj/errno.c b/pjlib/src/pj/errno.c
index 667c7d91..e36b3266 100644
--- a/pjlib/src/pj/errno.c
+++ b/pjlib/src/pj/errno.c
@@ -217,7 +217,7 @@ static void pj_perror_imp(int log_level, const char *sender,
/* Build the title */
len = pj_ansi_vsnprintf(titlebuf, sizeof(titlebuf), title_fmt, marker);
- if (len < 0 || len >= sizeof(titlebuf))
+ if (len < 0 || len >= (int)sizeof(titlebuf))
pj_ansi_strcpy(titlebuf, "Error");
/* Get the error */