cpukit/libdl/rtl-mdreloc-m32r.c: Add parentheses per Chris' suggestion

This commit is contained in:
Joel Sherrill
2015-03-08 18:30:44 -05:00
parent 9cc1892650
commit d9cda35785

View File

@@ -69,7 +69,7 @@ rtems_rtl_elf_relocate_rela (const rtems_rtl_obj_t* obj,
printf("24_RELA Overflow\n"); printf("24_RELA Overflow\n");
return false; return false;
} }
*where = (*where & 0xff000000) | tmp & 0xffffff; *where = (*where & 0xff000000) | (tmp & 0xffffff);
break; break;
case R_TYPE(32_RELA): case R_TYPE(32_RELA):