summaryrefslogtreecommitdiff
path: root/riscos/url_protocol.c
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/url_protocol.c')
-rw-r--r--riscos/url_protocol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/url_protocol.c b/riscos/url_protocol.c
index 5e0d70574..5db46d8f0 100644
--- a/riscos/url_protocol.c
+++ b/riscos/url_protocol.c
@@ -172,13 +172,13 @@ void ro_url_load(const char *url)
return;
}
- sprintf(command, "Alias$URLOpen_%.*s", colon - url, url);
+ sprintf(command, "Alias$URLOpen_%.*s", (int) (colon - url), url);
if (!getenv(command)) {
free(command);
return;
}
- sprintf(command, "URLOpen_%.*s %s", colon - url, url, url);
+ sprintf(command, "URLOpen_%.*s %s", (int) (colon - url), url, url);
error = xwimp_start_task(command, 0);
if (error) {