From eedb37a65dc8ec77cb6eb871349e086aec0c3d86 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Wed, 30 Mar 2022 09:10:21 +0300 Subject: [PATCH] Fix warnings on Win64 read.c:399:27: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 399 | obj = (void*)(long)cur->type; | ^ --- read.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/read.c b/read.c index de62b9a..228d4d0 100644 --- a/read.c +++ b/read.c @@ -374,7 +374,7 @@ static int processLineItem(redisReader *r) { if (r->fn && r->fn->createString) obj = r->fn->createString(cur,p,len); else - obj = (void*)(size_t)(cur->type); + obj = (void*)(uintptr_t)(cur->type); } if (obj == NULL) { @@ -439,7 +439,7 @@ static int processBulkItem(redisReader *r) { if (r->fn && r->fn->createString) obj = r->fn->createString(cur,s+2,len); else - obj = (void*)(long)cur->type; + obj = (void*)(uintptr_t)cur->type; success = 1; } } @@ -536,7 +536,7 @@ static int processAggregateItem(redisReader *r) { if (r->fn && r->fn->createArray) obj = r->fn->createArray(cur,elements); else - obj = (void*)(long)cur->type; + obj = (void*)(uintptr_t)cur->type; if (obj == NULL) { __redisReaderSetErrorOOM(r);