Use uintptr_t instead of unsigned long while initializing the
array of pointers.

Signed-off-by: Honnappa Nagarahalli <honnappa.nagaraha...@arm.com>
---
 app/test/test_ring.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test/test_ring.c b/app/test/test_ring.c
index 99fe4b46f..51c05cabb 100644
--- a/app/test/test_ring.c
+++ b/app/test/test_ring.c
@@ -447,7 +447,7 @@ test_ring_mem_init(void *obj, unsigned int count, int esize)
        /* Legacy queue APIs? */
        if (esize == -1)
                for (i = 0; i < count; i++)
-                       ((void **)obj)[i] = (void *)(unsigned long)i;
+                       ((void **)obj)[i] = (void *)(uintptr_t)i;
        else
                for (i = 0; i < (count * esize / sizeof(uint32_t)); i++)
                        ((uint32_t *)obj)[i] = i;
-- 
2.17.1

Reply via email to