diff options
author | enami tsugutomo <tsugutomo.enami@jp.sony.com> | 2012-11-16 13:41:00 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-11-16 13:41:00 -0500 |
commit | 86dcf21c0749f699678e42a605044d99de36dd28 (patch) | |
tree | 3e9d1e2ed80dddbb5c6cdc275c7b143e9f78f703 /src/unexelf.c | |
parent | cdc5d88cf68f232a71560937b557af8fa36d50c5 (diff) |
* src/unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64
Needed following 2012-10-20 change.
Fixes: debbugs:12902
Diffstat (limited to 'src/unexelf.c')
-rw-r--r-- | src/unexelf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexelf.c b/src/unexelf.c index 121e6042fc..b9f8e05e95 100644 --- a/src/unexelf.c +++ b/src/unexelf.c @@ -461,7 +461,7 @@ typedef struct { /* * NetBSD does not have normal-looking user-land ELF support. */ -# if defined __alpha__ || defined __sparc_v9__ +# if defined __alpha__ || defined __sparc_v9__ || defined _LP64 # define ELFSIZE 64 # else # define ELFSIZE 32 |