Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/291a5ec79dec5ccefe4a10fd54c937d36b25a42a
...commit
http://git.netsurf-browser.org/netsurf.git/commit/291a5ec79dec5ccefe4a10fd54c937d36b25a42a
...tree
http://git.netsurf-browser.org/netsurf.git/tree/291a5ec79dec5ccefe4a10fd54c937d36b25a42a
The branch, master has been updated
via 291a5ec79dec5ccefe4a10fd54c937d36b25a42a (commit)
from 6d8b9a9bb42c9455cf168715aa0ceb50fcbc86e7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=291a5ec79dec5ccefe4a10fd54c937d36b25a42a
commit 291a5ec79dec5ccefe4a10fd54c937d36b25a42a
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>
fs_backing_store: Stop trying to render offsets in hex
Signed-off-by: Daniel Silverstone <[email protected]>
diff --git a/content/fs_backing_store.c b/content/fs_backing_store.c
index 802a19e..ede729f 100644
--- a/content/fs_backing_store.c
+++ b/content/fs_backing_store.c
@@ -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);
-----------------------------------------------------------------------
Summary of changes:
content/fs_backing_store.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/content/fs_backing_store.c b/content/fs_backing_store.c
index 802a19e..ede729f 100644
--- a/content/fs_backing_store.c
+++ b/content/fs_backing_store.c
@@ -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);
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]