1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-09-29 18:09:29 +02:00

(tdep_init): Fix typo in nat_val_bytes[] (too much cut & paste).

Likewise for int_val_bytes[].

(Logical change 1.177)
This commit is contained in:
hp.com!davidm 2004-02-27 00:46:01 +00:00
parent 09a59ec368
commit 6702d1059c

View file

@ -58,11 +58,11 @@ tdep_init (void)
};
uint8_t nat_val_bytes[16] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xfe,
0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
uint8_t int_val_bytes[16] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xfe,
0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3e,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
sigset_t saved_sigmask;
uint8_t *lep, *bep;