summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2015-08-15 10:06:19 +0000
committerJohn-Mark Bell <jmb@netsurf-browser.org>2015-08-15 10:06:19 +0000
commitd90ab621f8021c5680a4702dbc20cbf94ce3ee3b (patch)
tree4ccd9b77ef3fc760ad81bfbdbcb3fb443cf36951 /riscos
parentfd9aa16ece1af9af828c4606bbd9df975e5d2e3d (diff)
downloadnetsurf-d90ab621f8021c5680a4702dbc20cbf94ce3ee3b.tar.gz
netsurf-d90ab621f8021c5680a4702dbc20cbf94ce3ee3b.tar.bz2
RISC OS: use correct format specifier
Diffstat (limited to 'riscos')
-rw-r--r--riscos/gui/url_bar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscos/gui/url_bar.c b/riscos/gui/url_bar.c
index 6003fe309..adaa8c03c 100644
--- a/riscos/gui/url_bar.c
+++ b/riscos/gui/url_bar.c
@@ -987,7 +987,7 @@ void ro_gui_url_bar_set_url(struct url_bar *url_bar, const char *url,
if (strlen(local_url) >= url_bar->text_size) {
url_bar->text_buffer[0] = '\0';
warn_user("LongURL", NULL);
- LOG("Long URL (%d chars): %s", strlen(url), url);
+ LOG("Long URL (%zu chars): %s", strlen(url), url);
} else {
strncpy(url_bar->text_buffer, local_url,
url_bar->text_size - 1);