From 20c8f64f0a69ec50911a7c0ee64d6ae34df83660 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Harboe?= Date: Tue, 13 Oct 2009 12:22:23 +0200 Subject: [PATCH] Fix warning. --- src/target/arm11_dbgtap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target/arm11_dbgtap.c b/src/target/arm11_dbgtap.c index 57685cfd7e..c9812a1526 100644 --- a/src/target/arm11_dbgtap.c +++ b/src/target/arm11_dbgtap.c @@ -590,7 +590,7 @@ int arm11_run_instr_data_to_core_noack(arm11_common_t * arm11, uint32_t opcode, Readies = (uint8_t *) malloc(bytes); if (Readies == NULL) { - LOG_ERROR("Out of memory allocating %d bytes", bytes); + LOG_ERROR("Out of memory allocating " ZU " bytes", bytes); return ERROR_FAIL; } -- 2.30.2