diff options
author | Roland McGrath <roland@gnu.org> | 2005-04-26 04:25:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-04-26 04:25:52 +0000 |
commit | 5949daa081392aa2a250aa5064b715e97aa9acb8 (patch) | |
tree | 304dc0eff4a0a69a3dde678848026ec392ae00ca /sysdeps/unix/sysv/linux/powerpc | |
parent | 64c0164816418e857adc9d2a530d5eeb323078e6 (diff) | |
download | glibc-5949daa081392aa2a250aa5064b715e97aa9acb8.tar glibc-5949daa081392aa2a250aa5064b715e97aa9acb8.tar.gz glibc-5949daa081392aa2a250aa5064b715e97aa9acb8.tar.bz2 glibc-5949daa081392aa2a250aa5064b715e97aa9acb8.zip |
2005-04-25 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
(INTERNAL_SYSCALL_ERROR_P): Fix typo in last change.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h index 17bfa9014f..c3463f7431 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h @@ -122,7 +122,7 @@ #undef INTERNAL_SYSCALL_ERROR_P #define INTERNAL_SYSCALL_ERROR_P(val, err) \ - ((void) (err), __builtin_expect ((err) & (1 << 28), 0)) + ((void) (val), __builtin_expect ((err) & (1 << 28), 0)) #undef INTERNAL_SYSCALL_ERRNO #define INTERNAL_SYSCALL_ERRNO(val, err) (val) |