mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-04 03:19:57 +08:00
style
This commit is contained in:
parent
5b0eed26b5
commit
632e80e9b1
1 changed files with 2 additions and 2 deletions
|
@ -413,7 +413,7 @@ int flash_write(flash_file_t *ctx) {
|
||||||
uint32_t blocks = (length + BLOCK_SIZE - 1) / BLOCK_SIZE;
|
uint32_t blocks = (length + BLOCK_SIZE - 1) / BLOCK_SIZE;
|
||||||
uint32_t end = seg->start + length;
|
uint32_t end = seg->start + length;
|
||||||
|
|
||||||
fprintf(stderr, " 0x%08x..0x%08x [0x%x / %d blocks]",
|
fprintf(stderr, " 0x%08x..0x%08x [0x%x / %u blocks]",
|
||||||
seg->start, end - 1, length, blocks);
|
seg->start, end - 1, length, blocks);
|
||||||
|
|
||||||
int block = 0;
|
int block = 0;
|
||||||
|
@ -427,7 +427,7 @@ int flash_write(flash_file_t *ctx) {
|
||||||
|
|
||||||
if (write_block(baddr, data, block_size) < 0) {
|
if (write_block(baddr, data, block_size) < 0) {
|
||||||
fprintf(stderr, " ERROR\n");
|
fprintf(stderr, " ERROR\n");
|
||||||
fprintf(stderr, "Error writing block %d of %d\n", block, blocks);
|
fprintf(stderr, "Error writing block %d of %u\n", block, blocks);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue