restore some redundant changes
This commit is contained in:
parent
331fe21297
commit
415cf30ae6
|
@ -107,7 +107,7 @@ pic_get_output_string(pic_state *pic, struct pic_port *port)
|
||||||
void
|
void
|
||||||
pic_close_port(pic_state *pic, struct pic_port *port)
|
pic_close_port(pic_state *pic, struct pic_port *port)
|
||||||
{
|
{
|
||||||
if ((int)xfclose(port->file) == (int)EOF) {
|
if (xfclose(port->file) == EOF) {
|
||||||
pic_error(pic, "close-port: failure");
|
pic_error(pic, "close-port: failure");
|
||||||
}
|
}
|
||||||
port->status = PIC_PORT_CLOSE;
|
port->status = PIC_PORT_CLOSE;
|
||||||
|
@ -462,8 +462,7 @@ pic_port_read_string(pic_state *pic){
|
||||||
c = EOF;
|
c = EOF;
|
||||||
buf = pic_open_output_string(pic);
|
buf = pic_open_output_string(pic);
|
||||||
for(i = 0; i < k; ++i) {
|
for(i = 0; i < k; ++i) {
|
||||||
c = xfgetc(port->file);
|
if((c = xfgetc(port->file)) == EOF){
|
||||||
if( c == EOF){
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
xfputc(c, buf->file);
|
xfputc(c, buf->file);
|
||||||
|
|
Loading…
Reference in New Issue