mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00: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:
parent
53f1bed392
commit
f7efd7c3df
@ -1,5 +1,11 @@
|
|||||||
2014-03-17 Will Newton <will.newton@linaro.org>
|
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.
|
||||||
|
|
||||||
* sysdeps/generic/ldsodefs.h: Check whether
|
* sysdeps/generic/ldsodefs.h: Check whether
|
||||||
HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
|
HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
|
||||||
than #if.
|
than #if.
|
||||||
|
@ -624,7 +624,7 @@ _IO_old_init (fp, flags)
|
|||||||
fp->_IO_save_end = NULL;
|
fp->_IO_save_end = NULL;
|
||||||
fp->_markers = NULL;
|
fp->_markers = NULL;
|
||||||
fp->_cur_column = 0;
|
fp->_cur_column = 0;
|
||||||
#if _IO_JUMPS_OFFSET
|
#ifdef _IO_JUMPS_OFFSET
|
||||||
fp->_vtable_offset = 0;
|
fp->_vtable_offset = 0;
|
||||||
#endif
|
#endif
|
||||||
#ifdef _IO_MTSAFE_IO
|
#ifdef _IO_MTSAFE_IO
|
||||||
|
@ -106,7 +106,7 @@ extern "C" {
|
|||||||
#define _IO_WIDE_JUMPS(THIS) ((struct _IO_FILE *) (THIS))->_wide_data->_wide_vtable
|
#define _IO_WIDE_JUMPS(THIS) ((struct _IO_FILE *) (THIS))->_wide_data->_wide_vtable
|
||||||
#define _IO_CHECK_WIDE(THIS) (((struct _IO_FILE *) (THIS))->_wide_data != NULL)
|
#define _IO_CHECK_WIDE(THIS) (((struct _IO_FILE *) (THIS))->_wide_data != NULL)
|
||||||
|
|
||||||
#if _IO_JUMPS_OFFSET
|
#ifdef _IO_JUMPS_OFFSET
|
||||||
# define _IO_JUMPS_FUNC(THIS) \
|
# define _IO_JUMPS_FUNC(THIS) \
|
||||||
(*(struct _IO_jump_t **) ((void *) &_IO_JUMPS ((struct _IO_FILE_plus *) (THIS)) \
|
(*(struct _IO_jump_t **) ((void *) &_IO_JUMPS ((struct _IO_FILE_plus *) (THIS)) \
|
||||||
+ (THIS)->_vtable_offset))
|
+ (THIS)->_vtable_offset))
|
||||||
|
@ -2297,7 +2297,7 @@ buffered_vfprintf (_IO_FILE *s, const CHAR_T *format,
|
|||||||
hp->_mode = -1;
|
hp->_mode = -1;
|
||||||
#endif
|
#endif
|
||||||
hp->_IO_file_flags = _IO_MAGIC|_IO_NO_READS|_IO_USER_LOCK;
|
hp->_IO_file_flags = _IO_MAGIC|_IO_NO_READS|_IO_USER_LOCK;
|
||||||
#if _IO_JUMPS_OFFSET
|
#ifdef _IO_JUMPS_OFFSET
|
||||||
hp->_vtable_offset = 0;
|
hp->_vtable_offset = 0;
|
||||||
#endif
|
#endif
|
||||||
#ifdef _IO_MTSAFE_IO
|
#ifdef _IO_MTSAFE_IO
|
||||||
|
Loading…
Reference in New Issue
Block a user