fs_backing_store: Stop trying to render offsets in hex

Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
Daniel Silverstone 2020-05-23 12:16:34 +01:00
parent 6d8b9a9bb4
commit 291a5ec79d
No known key found for this signature in database
GPG Key ID: C30DF439F2987D74
1 changed files with 4 additions and 4 deletions

View File

@ -1614,7 +1614,7 @@ static nserror store_write_block(struct store_state *state,
offst);
if (wr != (ssize_t)bse->elem[elem_idx].size) {
NSLOG(netsurf, ERROR,
"Write failed %"PRIssizet" of %d bytes from %p at 0x%"PRIsizet"x block %d errno %d",
"Write failed %"PRIssizet" of %d bytes from %p at %"PRIsizet" block %d errno %d",
wr,
bse->elem[elem_idx].size,
bse->elem[elem_idx].data,
@ -1625,7 +1625,7 @@ static nserror store_write_block(struct store_state *state,
}
NSLOG(netsurf, INFO,
"Wrote %"PRIssizet" bytes from %p at 0x%"PRIsizet"x block %d", wr,
"Wrote %"PRIssizet" bytes from %p at %"PRIsizet" block %d", wr,
bse->elem[elem_idx].data, (size_t)offst,
bse->elem[elem_idx].block);
@ -1784,7 +1784,7 @@ static nserror store_read_block(struct store_state *state,
offst);
if (rd != (ssize_t)bse->elem[elem_idx].size) {
NSLOG(netsurf, ERROR,
"Failed reading %"PRIssizet" of %d bytes into %p from 0x%"PRIsizet"x block %d errno %d",
"Failed reading %"PRIssizet" of %d bytes into %p from %"PRIsizet" block %d errno %d",
rd,
bse->elem[elem_idx].size,
bse->elem[elem_idx].data,
@ -1795,7 +1795,7 @@ static nserror store_read_block(struct store_state *state,
}
NSLOG(netsurf, DEEPDEBUG,
"Read %"PRIssizet" bytes into %p from 0x%"PRIsizet"x block %d", rd,
"Read %"PRIssizet" bytes into %p from %"PRIsizet" block %d", rd,
bse->elem[elem_idx].data, (size_t)offst,
bse->elem[elem_idx].block);