From 57fa6e30c61a192a9a6bcd2fe50218f6c6fd00dc Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 27 Mar 2009 01:28:57 +0000 Subject: Use byte instead of unsigned char. svn path=/trunk/netsurf/; revision=6913 --- riscos/theme_install.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/riscos/theme_install.c b/riscos/theme_install.c index fc0cdc5b0..27cc69f7c 100644 --- a/riscos/theme_install.c +++ b/riscos/theme_install.c @@ -195,8 +195,8 @@ bool ro_gui_theme_install_apply(wimp_w w) theme_save[sizeof theme_save - 1] = '\0'; error = xosfile_save_stamped(theme_save, 0xffd, - (unsigned char *) theme_install_content->source_data, - (unsigned char *) theme_install_content->source_data + + (byte *) theme_install_content->source_data, + (byte *) theme_install_content->source_data + theme_install_content->source_size); if (error) { LOG(("xosfile_save_stamped: 0x%x: %s", -- cgit v1.2.3