22 lines
657 B
Text
22 lines
657 B
Text
Remove type-conversion compiler warnings, no functional change.
|
|
|
|
--- CUnit/Sources/Console/Console.c.orig Wed Mar 14 03:25:32 2007
|
|
+++ CUnit/Sources/Console/Console.c Wed Aug 17 20:35:50 2011
|
|
@@ -476,7 +476,7 @@ static void list_suites(CU_pTestRegistry pRegistry)
|
|
{
|
|
CU_pSuite pCurSuite = NULL;
|
|
int i;
|
|
- static size_t width[6];
|
|
+ static int width[6];
|
|
|
|
if (NULL == pRegistry) {
|
|
pRegistry = CU_get_registry();
|
|
@@ -533,7 +533,7 @@ static void list_tests(CU_pSuite pSuite)
|
|
{
|
|
CU_pTest pCurTest = NULL;
|
|
unsigned int uiCount;
|
|
- static size_t width[3];
|
|
+ static int width[3];
|
|
|
|
assert(NULL != pSuite);
|
|
assert(NULL != pSuite->pName);
|