mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
Fix _IO_JUMPS_OFFSET -Wundef warnings
ChangeLog: 2014-03-17 Will Newton <will.newton@linaro.org> * libio/genops.c: Check whether _IO_JUMPS_OFFSET is defined with #ifdef rather than #if. * libio/libioP.h: Likewise. * stdio-common/vfprintf.c: Likewise.
This commit is contained in:
@ -624,7 +624,7 @@ _IO_old_init (fp, flags)
|
||||
fp->_IO_save_end = NULL;
|
||||
fp->_markers = NULL;
|
||||
fp->_cur_column = 0;
|
||||
#if _IO_JUMPS_OFFSET
|
||||
#ifdef _IO_JUMPS_OFFSET
|
||||
fp->_vtable_offset = 0;
|
||||
#endif
|
||||
#ifdef _IO_MTSAFE_IO
|
||||
|
Reference in New Issue
Block a user