printf format warning fixes
Observed on a Cygwin build. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
@@ -1480,8 +1480,10 @@ int arm11_write_memory(struct target_s *target, uint32_t address, uint32_t size,
|
||||
|
||||
if (address + size * count != r0)
|
||||
{
|
||||
LOG_ERROR("Data transfer failed. Expected end address 0x%08x, got 0x%08x",
|
||||
address + size * count, r0);
|
||||
LOG_ERROR("Data transfer failed. Expected end "
|
||||
"address 0x%08x, got 0x%08x",
|
||||
(unsigned) (address + size * count),
|
||||
(unsigned) r0);
|
||||
|
||||
if (arm11_config_memwrite_burst)
|
||||
LOG_ERROR("use 'arm11 memwrite burst disable' to disable fast burst mode");
|
||||
|
||||
Reference in New Issue
Block a user