From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Mon, 28 Dec 2020 20:32:59 -0700 Subject: [PATCH 1/1] lib: aes: build failure with DEBUG=1 In-Reply-To: <20201228165627.246425-1-xypron.glpk@gmx.de> References: <20201228165627.246425-1-xypron.glpk@gmx.de> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, 28 Dec 2020 at 09:56, Heinrich Schuchardt wrote: > > Building fails with DEBUG=1: > > lib/aes.c: In function ?debug_print_vector?: > lib/aes.c:622:45: error: > cast from pointer to integer of different size > [-Werror=pointer-to-int-cast] > 622 | printf("%s [%d] @0x%08x", name, num_bytes, (u32)data); > > Pointers can only be cast to (uintptr_t). But anyway we have > %p for printing pointers. > > Signed-off-by: Heinrich Schuchardt > --- > lib/aes.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Simon Glass