From 35038063e9e3d8432535c193c654e9f981a58f9f Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 8 Jun 1998 09:50:20 +0000 Subject: [PATCH] (__underflow): Read character from read pointer as unsigned. (__uflow): Likewise. From-SVN: r20329 --- libio/genops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libio/genops.c b/libio/genops.c index de9c826b9fe..cbd8f0f1ea2 100644 --- a/libio/genops.c +++ b/libio/genops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1995, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or @@ -258,7 +258,7 @@ __underflow (fp) { _IO_switch_to_main_get_area (fp); if (fp->_IO_read_ptr < fp->_IO_read_end) - return *fp->_IO_read_ptr; + return *(unsigned char *) fp->_IO_read_ptr; } if (_IO_have_markers (fp)) { @@ -283,7 +283,7 @@ __uflow (fp) { _IO_switch_to_main_get_area (fp); if (fp->_IO_read_ptr < fp->_IO_read_end) - return *fp->_IO_read_ptr++; + return *(unsigned char *) fp->_IO_read_ptr++; } if (_IO_have_markers (fp)) { -- 2.30.2