diff options
author | Florian Weimer <fweimer@redhat.com> | 2015-05-22 13:35:45 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2015-05-22 13:35:45 +0200 |
commit | 7348824c39c45d401f62f724ecad4e3479180578 (patch) | |
tree | e5e6c0fad67c3692fee97cbfac60b43b5486e6fd /libio | |
parent | e69dcccbcb53b2c0f3fbe3f6c3e04aadae7e9265 (diff) | |
download | glibc-7348824c39c45d401f62f724ecad4e3479180578.tar.gz glibc-7348824c39c45d401f62f724ecad4e3479180578.tar.xz glibc-7348824c39c45d401f62f724ecad4e3479180578.zip |
Fix indentation to match nesting in previous commit
Diffstat (limited to 'libio')
-rw-r--r-- | libio/libioP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/libioP.h b/libio/libioP.h index 784a47b743..0f16e2dbd1 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -113,7 +113,7 @@ extern "C" { violation in case THIS has a different pointer type. */ #define _IO_CAST_FIELD_ACCESS(THIS, TYPE, MEMBER) \ (*(_IO_MEMBER_TYPE (TYPE, MEMBER) *)(((char *) (THIS)) \ - + offsetof(TYPE, MEMBER))) + + offsetof(TYPE, MEMBER))) #define _IO_JUMPS(THIS) (THIS)->vtable #define _IO_JUMPS_FILE_plus(THIS) \ |