diff options
Diffstat (limited to 'include/coff/ecoff-ext.h')
-rw-r--r-- | include/coff/ecoff-ext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/coff/ecoff-ext.h b/include/coff/ecoff-ext.h index 4683e88..c7e3f91 100644 --- a/include/coff/ecoff-ext.h +++ b/include/coff/ecoff-ext.h @@ -295,8 +295,8 @@ extern void _do_putl32 PARAMS ((bfd_vma data, unsigned char *addr)); #define AUX_PUT_ANY(bigend, val, ax, field) \ ((bigend) \ - ? _do_putb32 ((val), (ax)->field) \ - : _do_putl32 ((val), (ax)->field)) + ? (_do_putb32 ((val), (ax)->field), 0) \ + : (_do_putl32 ((val), (ax)->field), 0)) #define AUX_PUT_DNLOW(bigend, val, ax) \ AUX_PUT_ANY ((bigend), (val), (ax), a_dnLow) |