From f7efd7c3dfffa3c417e9d3c4cb19d9954a3b1421 Mon Sep 17 00:00:00 2001 From: Will Newton Date: Mon, 17 Mar 2014 10:54:12 +0000 Subject: Fix _IO_JUMPS_OFFSET -Wundef warnings ChangeLog: 2014-03-17 Will Newton * libio/genops.c: Check whether _IO_JUMPS_OFFSET is defined with #ifdef rather than #if. * libio/libioP.h: Likewise. * stdio-common/vfprintf.c: Likewise. --- libio/genops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libio/genops.c') diff --git a/libio/genops.c b/libio/genops.c index e0ce8cc..42efe58 100644 --- a/libio/genops.c +++ b/libio/genops.c @@ -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 -- cgit v1.1