From: Øyvind Harboe Date: Tue, 13 Oct 2009 10:22:23 +0000 (+0200) Subject: Fix warning. X-Git-Tag: v0.3.0-rc0~96 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=20c8f64f0a69ec50911a7c0ee64d6ae34df83660;p=openocd Fix warning. --- diff --git a/src/target/arm11_dbgtap.c b/src/target/arm11_dbgtap.c index 57685cfd..c9812a15 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; }