summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2018-05-08 12:26:04 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2018-05-08 12:26:04 +0100
commit2290c208ba69bb9f98d33c470712f9df5cc6c040 (patch)
tree516f44fcb4542b6482bfaae35f83ac73a0f079ee
parent6e0e3ea81f44c294d5f7300eb7a92483babcae49 (diff)
downloadnetsurf-2290c208ba69bb9f98d33c470712f9df5cc6c040.tar.gz
netsurf-2290c208ba69bb9f98d33c470712f9df5cc6c040.tar.bz2
Disc cache: Squash armhf warnings.
-rw-r--r--content/fs_backing_store.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/fs_backing_store.c b/content/fs_backing_store.c
index 3736cc551..19eb1ca7b 100644
--- a/content/fs_backing_store.c
+++ b/content/fs_backing_store.c
@@ -1141,7 +1141,7 @@ build_entrymap(struct store_state *state)
{
unsigned int eloop;
- NSLOG(netsurf, INFO, "Allocating %ld bytes for max of %d buckets",
+ NSLOG(netsurf, INFO, "Allocating %"PRIsizet" bytes for max of %d buckets",
(1 << state->ident_bits) * sizeof(entry_index_t),
1 << state->ident_bits);
@@ -1220,7 +1220,7 @@ read_entries(struct store_state *state)
entries_size = (1 << state->entry_bits) * sizeof(struct store_entry);
NSLOG(netsurf, INFO,
- "Allocating %"PRIsizet" bytes for max of %d entries of %ld length elements %ld length",
+ "Allocating %"PRIsizet" bytes for max of %d entries of %"PRIsizet" length elements %"PRIsizet" length",
entries_size,
1 << state->entry_bits,
sizeof(struct store_entry),