* libxcoff.h: Use PARAMS on function declarations.
[deliverable/binutils-gdb.git] / bfd / coff-rs6000.c
index bf4ebc15aa74e1ce6772096376a82b0a6c551dc8..235b6a1ed2395d8098be624705b5becb02c57c9c 100644 (file)
@@ -3708,7 +3708,7 @@ xcoff_generate_rtinit  (abfd, init, fini, rtld)
      0x0040 + initsz  fini name */
 
   data_buffer_size = 0x0040 + initsz + finisz;
-  data_buffer_size += (data_buffer_size & 7) ? 8 - (data_buffer_size & 7) : 0;
+  data_buffer_size = (data_buffer_size + 7) &~ (bfd_size_type) 7;
   data_buffer = NULL;
   data_buffer = (bfd_byte *) bfd_zmalloc (data_buffer_size);
   if (data_buffer == NULL)
This page took 0.023595 seconds and 4 git commands to generate.