[Freeswitch-svn] [commit] r10878 - freeswitch/trunk/libs/pcre
FreeSWITCH SVN
mikej at freeswitch.org
Thu Dec 18 15:32:58 PST 2008
Author: mikej
Date: Thu Dec 18 18:32:58 2008
New Revision: 10878
Log:
FSCORE-258 pcre compile warnings
Modified:
freeswitch/trunk/libs/pcre/pcretest.c
Modified: freeswitch/trunk/libs/pcre/pcretest.c
==============================================================================
--- freeswitch/trunk/libs/pcre/pcretest.c (original)
+++ freeswitch/trunk/libs/pcre/pcretest.c Thu Dec 18 18:32:58 2008
@@ -794,7 +794,7 @@
if (offsets == NULL)
{
printf("** Failed to get %d bytes of memory for offsets vector\n",
- size_offsets_max * sizeof(int));
+ size_offsets_max * (int)sizeof(int));
yield = 1;
goto EXIT;
}
@@ -1736,7 +1736,7 @@
if (offsets == NULL)
{
printf("** Failed to get %d bytes of memory for offsets vector\n",
- size_offsets_max * sizeof(int));
+ size_offsets_max * (int)sizeof(int));
yield = 1;
goto EXIT;
}
More information about the Freeswitch-svn
mailing list