diff options
Diffstat (limited to 'libgfortran/io/fbuf.c')
-rw-r--r-- | libgfortran/io/fbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/io/fbuf.c b/libgfortran/io/fbuf.c index a0d033b..f2b1599 100644 --- a/libgfortran/io/fbuf.c +++ b/libgfortran/io/fbuf.c @@ -157,7 +157,7 @@ fbuf_seek (gfc_unit * u, gfc_offset off) /* Moving to the left past the flushed marked would imply moving past the left tab limit, which is never allowed. So return error if that is attempted. */ - if (pos < u->fbuf->flushed) + if (pos < (gfc_offset) u->fbuf->flushed) return -1; u->fbuf->pos = pos; return 0; |