diff options
Diffstat (limited to 'libio/libio.h')
-rw-r--r-- | libio/libio.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libio/libio.h b/libio/libio.h index a060b42395..7b2f70cdab 100644 --- a/libio/libio.h +++ b/libio/libio.h @@ -229,7 +229,9 @@ struct _IO_FILE_complete #endif #if defined _G_IO_IO_FILE_VERSION && _G_IO_IO_FILE_VERSION == 0x20001 _IO_off64_t _offset; - int _unused2[16]; /* Make sure we don't get into trouble again. */ + char *_IO_save_ptr; + /* Make sure we don't get into trouble again. */ + char _unused2[16 * sizeof (int) - sizeof (char *)]; #endif }; |