diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-11-26 12:29:20 +0100 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-11-26 12:32:28 +0100 |
commit | d1d9eaf478b7d3a11a599c120498b79fe5629a61 (patch) | |
tree | 47bc37ce2eddc0e89daf81a0650a332066d59541 /sysdeps/unix/sysv/linux/xstatconv.c | |
parent | 246b27983b908a241f025ccc2afe87a9e6f32203 (diff) | |
download | glibc-d1d9eaf478b7d3a11a599c120498b79fe5629a61.tar glibc-d1d9eaf478b7d3a11a599c120498b79fe5629a61.tar.gz glibc-d1d9eaf478b7d3a11a599c120498b79fe5629a61.tar.bz2 glibc-d1d9eaf478b7d3a11a599c120498b79fe5629a61.zip |
Use __glibc_reserved instead __unused.
Diffstat (limited to 'sysdeps/unix/sysv/linux/xstatconv.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/xstatconv.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sysdeps/unix/sysv/linux/xstatconv.c b/sysdeps/unix/sysv/linux/xstatconv.c index 858b911487..60e4e10797 100644 --- a/sysdeps/unix/sysv/linux/xstatconv.c +++ b/sysdeps/unix/sysv/linux/xstatconv.c @@ -78,19 +78,19 @@ __xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf) buf->st_ctime = kbuf->st_ctime; #endif #ifdef _HAVE_STAT___UNUSED1 - buf->__unused1 = 0; + buf->__glibc_reserved1 = 0; #endif #ifdef _HAVE_STAT___UNUSED2 - buf->__unused2 = 0; + buf->__glibc_reserved2 = 0; #endif #ifdef _HAVE_STAT___UNUSED3 - buf->__unused3 = 0; + buf->__glibc_reserved3 = 0; #endif #ifdef _HAVE_STAT___UNUSED4 - buf->__unused4 = 0; + buf->__glibc_reserved4 = 0; #endif #ifdef _HAVE_STAT___UNUSED5 - buf->__unused5 = 0; + buf->__glibc_reserved5 = 0; #endif } break; @@ -149,19 +149,19 @@ __xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf) buf->st_ctime = kbuf->st_ctime; #endif #ifdef _HAVE_STAT64___UNUSED1 - buf->__unused1 = 0; + buf->__glibc_reserved1 = 0; #endif #ifdef _HAVE_STAT64___UNUSED2 - buf->__unused2 = 0; + buf->__glibc_reserved2 = 0; #endif #ifdef _HAVE_STAT64___UNUSED3 - buf->__unused3 = 0; + buf->__glibc_reserved3 = 0; #endif #ifdef _HAVE_STAT64___UNUSED4 - buf->__unused4 = 0; + buf->__glibc_reserved4 = 0; #endif #ifdef _HAVE_STAT64___UNUSED5 - buf->__unused5 = 0; + buf->__glibc_reserved5 = 0; #endif } break; @@ -254,19 +254,19 @@ __xstat32_conv (int vers, struct stat64 *kbuf, struct stat *buf) #endif #ifdef _HAVE_STAT___UNUSED1 - buf->__unused1 = 0; + buf->__glibc_reserved1 = 0; #endif #ifdef _HAVE_STAT___UNUSED2 - buf->__unused2 = 0; + buf->__glibc_reserved2 = 0; #endif #ifdef _HAVE_STAT___UNUSED3 - buf->__unused3 = 0; + buf->__glibc_reserved3 = 0; #endif #ifdef _HAVE_STAT___UNUSED4 - buf->__unused4 = 0; + buf->__glibc_reserved4 = 0; #endif #ifdef _HAVE_STAT___UNUSED5 - buf->__unused5 = 0; + buf->__glibc_reserved5 = 0; #endif } break; |