mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-29 07:33:29 +08:00
dfu:cosmetic: Fix printf text for buffer overflow condition
Correct error message if overflow is detected. Change-Id: I8a915c7353d49822c046fbc36241237b370e6c98 Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
This commit is contained in:
parent
5290759cc4
commit
a7d2c3cdf2
@ -153,8 +153,8 @@ int dfu_write(struct dfu_entity *dfu, void *buf, int size, int blk_seq_num)
|
||||
|
||||
/* we should be in buffer now (if not then size too large) */
|
||||
if ((dfu->i_buf + size) > dfu->i_buf_end) {
|
||||
printf("%s: Wrong size! [%d] [%d] - %d\n",
|
||||
__func__, dfu->i_blk_seq_num, blk_seq_num, size);
|
||||
error("Buffer overflow! (0x%p + 0x%x > 0x%p)\n", dfu->i_buf,
|
||||
size, dfu->i_buf_end);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user