diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-03-14 23:26:37 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2006-03-14 23:26:37 +0000 |
commit | b3e5743bb26240cf69b2822446231178c50e2d9e (patch) | |
tree | 176d67e663c01fac9f028a90fef8f0a59a3c5112 | |
parent | faf99c4817bcc8a4dd0f5f24743db9efa8df6447 (diff) |
2006-03-15 Thomas Schwinge <tschwinge@gnu.org>
* dir.h (DIRECT_NAMELEN): Don't use ?: as a lvalue.
-rw-r--r-- | ufs/ChangeLog | 4 | ||||
-rw-r--r-- | ufs/dir.h | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/ufs/ChangeLog b/ufs/ChangeLog index e2409670..aa30e784 100644 --- a/ufs/ChangeLog +++ b/ufs/ChangeLog @@ -1,3 +1,7 @@ +2006-03-15 Thomas Schwinge <tschwinge@gnu.org> + + * dir.h (DIRECT_NAMELEN): Don't use ?: as a lvalue. + 2002-10-03 Roland McGrath <roland@frob.com> * dir.h (MAXNAMLEN): #undef before defining. @@ -91,13 +91,13 @@ struct directory_entry { /* Return the namlen from a struct direct, paying attention to whether this filesystem supports the type extension */ #if (BYTE_ORDER == LITTLE_ENDIAN) -#define DIRECT_NAMLEN(dp) (direct_symlink_extension || swab_disk \ - ? (dp)->d_namlen \ - : (dp)->d_type) +#define DIRECT_NAMLEN(dp) (*(direct_symlink_extension || swab_disk \ + ? &(dp)->d_namlen \ + : &(dp)->d_type)) #else -#define DIRECT_NAMLEN(dp) (!direct_symlink_extension && swab_disk \ - ? (dp)->d_type \ - : (dp)->d_namlen) +#define DIRECT_NAMLEN(dp) (*(!direct_symlink_extension && swab_disk \ + ? &(dp)->d_type \ + : &(dp)->d_namlen)) #endif /* |