Part 1 of PR25561, fix compile warnings forgotten in actual commit.
authorjb <jb@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 15 May 2008 16:32:00 +0000 (16:32 +0000)
committerjb <jb@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 15 May 2008 16:32:00 +0000 (16:32 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135379 138bc75d-0d04-0410-961f-82ee72b054a4

libgfortran/io/fbuf.c
libgfortran/io/transfer.c

index ba6f710..e34fc75 100644 (file)
@@ -126,7 +126,7 @@ fbuf_seek (gfc_unit * u, gfc_offset off)
   if (pos < 0)
     return -1;
   u->fbuf->ptr = u->fbuf->buf + pos;
-  if (pos > u->fbuf->act)
+  if (pos > (gfc_offset) u->fbuf->act)
     u->fbuf->act = pos;
   return 0;
 }
index 8353f3d..ff7e651 100644 (file)
@@ -2290,7 +2290,7 @@ skip_record (st_parameter_dt *dtp, size_t bytes)
        {
          rlength = 
            (MAX_READ > (size_t) dtp->u.p.current_unit->bytes_left_subrecord) ?
-           MAX_READ : dtp->u.p.current_unit->bytes_left_subrecord;
+           MAX_READ : (size_t) dtp->u.p.current_unit->bytes_left_subrecord;
 
          if (sread (dtp->u.p.current_unit->s, p, &rlength) != 0)
            {