From: Ken Raeburn Date: Wed, 12 Jul 1995 04:29:47 +0000 (+0000) Subject: * libelf.h (elf_backend_data): Use unsigned, not unsigned char, for bitfields. X-Git-Tag: gdb-4_18~11433 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c403ad088bc9672dd3ccbf56d180721a1fe6812d;p=platform%2Fupstream%2Fbinutils.git * libelf.h (elf_backend_data): Use unsigned, not unsigned char, for bitfields. --- diff --git a/bfd/libelf.h b/bfd/libelf.h index 52a60ba..d0aa970 100644 --- a/bfd/libelf.h +++ b/bfd/libelf.h @@ -422,9 +422,9 @@ struct elf_backend_data const struct elf_size_info *s; - unsigned char want_got_plt : 1; - unsigned char plt_readonly : 1; - unsigned char want_plt_sym : 1; + unsigned want_got_plt : 1; + unsigned plt_readonly : 1; + unsigned want_plt_sym : 1; }; /* Information stored for each BFD section in an ELF file. This