[ofw] svn.2560 commit cl_fmap_t pfn_compare returns int
Smith, Stan
stan.smith at intel.com
Mon Nov 16 14:05:35 PST 2009
Hello,
Oops - some how I missed this file for the svn.2559 commit.
Signed-off-by: stan smith <stan.smith at intel.com>
Revision: 2560
Author: stansmith
Date: 1:56:45 PM, Monday, November 16, 2009
Message:
[COMPLIB] cl_fmap_t compare now returns an int; change intn_t --> int.
----
Modified : /gen1/trunk/core/complib/cl_map.c
--- a/core/complib/cl_map.c Mon Nov 16 13:47:56 2009
+++ b/core/complib/cl_map.c Mon Nov 16 13:43:09 2009
@@ -1716,7 +1716,7 @@
IN const void* const p_key )
{
cl_fmap_item_t *p_item;
- intn_t cmp;
+ int cmp;
CL_ASSERT( p_map );
CL_ASSERT( p_map->state == CL_INITIALIZED );
@@ -1833,7 +1833,7 @@
IN cl_fmap_item_t* const p_item )
{
cl_fmap_item_t *p_insert_at, *p_comp_item;
- intn_t cmp = 0;
+ int cmp = 0;
CL_ASSERT( p_map );
CL_ASSERT( p_map->state == CL_INITIALIZED );
@@ -2174,7 +2174,7 @@
OUT cl_fmap_t* const p_old )
{
cl_fmap_item_t *p_item1, *p_item2;
- intn_t cmp;
+ int cmp;
CL_ASSERT( p_map1 );
CL_ASSERT( p_map2 );
More information about the ofw
mailing list