From 59fb052818656e74162d7f026f7089ec42c1e8a0 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 27 Dec 2003 00:11:57 +0000 Subject: [project @ 2003-12-27 00:11:57 by jmb] Tidy code to reduce compiler warnings. htmlredraw.c and plugin.c produce the most now. Hopefully I haven't broken anything ;) svn path=/import/netsurf/; revision=451 --- riscos/frames.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'riscos/frames.c') diff --git a/riscos/frames.c b/riscos/frames.c index fa1db8c48..055d531e5 100644 --- a/riscos/frames.c +++ b/riscos/frames.c @@ -34,8 +34,8 @@ void frame_add_instance(struct content *c, struct browser_window *parent, os_error *e; gui_window *g = (gui_window*)xcalloc(1, sizeof(gui_window)); - bw = create_browser_window(parent->flags, parent->format_width, - parent->format_height, parent); + bw = create_browser_window(parent->flags, (int)parent->format_width, + (int)parent->format_height, parent); w.visible.x0 = 346; w.visible.x1 = 370; -- cgit v1.2.3