Fix compile time warning by using an unsigned type.
authorNick Clifton <nickc@redhat.com>
Fri, 11 Feb 2005 15:59:51 +0000 (15:59 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 11 Feb 2005 15:59:51 +0000 (15:59 +0000)
bfd/ChangeLog
bfd/libbfd.c

index 099c703..5e622c5 100644 (file)
@@ -1,5 +1,8 @@
 2005-02-11  Nick Clifton  <nickc@redhat.com>
 
+       * libbfd.c (read_signed_leb128): Use an unsigned type for 'shift'
+       to avoid a compile time warning.
+
        * coff-alpha.c (alpha_adjust_reloc_in): Remove redundant test from
        BFD_ASSERT.
 
index b2f83c4..ec1864c 100644 (file)
@@ -897,7 +897,7 @@ read_signed_leb128 (bfd *abfd ATTRIBUTE_UNUSED,
                    unsigned int * bytes_read_ptr)
 {
   bfd_vma result;
-  int shift;
+  unsigned shift;
   int num_read;
   unsigned char byte;