From 2ac557b85c6bdf5b65ad8f35ef44bb051612aa10 Mon Sep 17 00:00:00 2001 From: neil Date: Tue, 2 Dec 2014 19:55:59 +0000 Subject: [PATCH] Use a UBYTE rather than a BYTE for the buffer passed to FWriteChars(), since the function expects a UBYTE array. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@49819 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/dos/fputc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rom/dos/fputc.c b/rom/dos/fputc.c index 0776acdc61..9e7ad61911 100644 --- a/rom/dos/fputc.c +++ b/rom/dos/fputc.c @@ -1,5 +1,5 @@ /* - Copyright © 1995-2007, The AROS Development Team. All rights reserved. + Copyright © 1995-2014, The AROS Development Team. All rights reserved. $Id$ Desc: @@ -63,7 +63,7 @@ { AROS_LIBFUNC_INIT - BYTE c = character; + UBYTE c = character; return (1 == FWriteChars(file, &c, 1, DOSBase)) ? character : EOF; -- 2.11.4.GIT