diff options
Diffstat (limited to 'libgfortran/io/backspace.c')
-rw-r--r-- | libgfortran/io/backspace.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgfortran/io/backspace.c b/libgfortran/io/backspace.c index 5cfc43c..aff4c5e 100644 --- a/libgfortran/io/backspace.c +++ b/libgfortran/io/backspace.c @@ -34,7 +34,7 @@ Boston, MA 02111-1307, USA. */ static void formatted_backspace (void) { - offset_t base; + gfc_offset base; char *p; int n; @@ -92,12 +92,12 @@ io_error: static void unformatted_backspace (void) { - offset_t *p, new; + gfc_offset *p, new; int length; - length = sizeof (offset_t); + length = sizeof (gfc_offset); - p = (offset_t *) salloc_r_at (current_unit->s, &length, + p = (gfc_offset *) salloc_r_at (current_unit->s, &length, file_position (current_unit->s) - length); if (p == NULL) goto io_error; |