Skip to content

Commit

Permalink
2006-03-02 Roland McGrath <roland@redhat.com>
Browse files Browse the repository at this point in the history
	* sysdeps/unix/alpha/sysdep.h (PTR_MANGLE): Use __typeof in cast.
  • Loading branch information
Roland McGrath committed Mar 3, 2006
1 parent 2f8d989 commit 82dd8c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sysdeps/unix/alpha/sysdep.h
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ __LABEL(name) \
# else
extern uintptr_t __pointer_chk_guard_local attribute_relro attribute_hidden;
# define PTR_MANGLE(var) \
(var) = (void *) ((uintptr_t) (var) ^ __pointer_chk_guard_local)
(var) = (__typeof (var)) ((uintptr_t) (var) ^ __pointer_chk_guard_local)
# define PTR_DEMANGLE(var) PTR_MANGLE(var)
# endif
#elif defined PIC
Expand Down

0 comments on commit 82dd8c1

Please sign in to comment.