rpms/elfutils/devel elfutils-0.122-cast.patch, 1.1, 1.2 elfutils.spec, 1.71, 1.72

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Jul 13 02:06:30 UTC 2006


Author: roland

Update of /cvs/dist/rpms/elfutils/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv19001

Modified Files:
	elfutils-0.122-cast.patch elfutils.spec 
Log Message:
Tweak s390 warning fix.

elfutils-0.122-cast.patch:
 0 files changed

Index: elfutils-0.122-cast.patch
===================================================================
RCS file: /cvs/dist/rpms/elfutils/devel/elfutils-0.122-cast.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- elfutils-0.122-cast.patch	13 Jul 2006 01:22:49 -0000	1.1
+++ elfutils-0.122-cast.patch	13 Jul 2006 02:06:25 -0000	1.2
@@ -7,7 +7,7 @@
 # 
 # patch "src/readelf.c"
 #  from [c644fd7f7331b5041932ad76ea3dfd9de609fdbf]
-#    to [e900c18372c2c54db50c064ddb119044cc65b61f]
+#    to [bbb36859cccf55acf4ca5ff5ddae0daeb4cea4ba]
 # 
 ============================================================
 --- src/ChangeLog	f8c27340f5383e9b12ba61c17f42836427afb156
@@ -23,13 +23,18 @@
  	* elflint.c (check_sysv_hash64): Fix printf format.
 ============================================================
 --- src/readelf.c	c644fd7f7331b5041932ad76ea3dfd9de609fdbf
-+++ src/readelf.c	e900c18372c2c54db50c064ddb119044cc65b61f
-@@ -2534,7 +2534,7 @@
++++ src/readelf.c	bbb36859cccf55acf4ca5ff5ddae0daeb4cea4ba
+@@ -2534,9 +2534,10 @@
    if (asprintf (&str, gettext ("\
   Symbol Bias: %u\n\
   Bitmask Size: %zu bytes  %" PRIuFAST32 "%% bits set  2nd hash shift: %u\n"),
 -		symbias, bitmask_words * sizeof (Elf32_Word),
+-		(nbits * 100 + 50) / (bitmask_words * sizeof (Elf32_Word) * 8),
+-		shift) == -1)
 +		(unsigned int) symbias, bitmask_words * sizeof (Elf32_Word),
- 		(nbits * 100 + 50) / (bitmask_words * sizeof (Elf32_Word) * 8),
- 		shift) == -1)
++		((nbits * 100 + 50)
++		 / (uint_fast32_t) (bitmask_words * sizeof (Elf32_Word) * 8)),
++		(unsigned int) shift) == -1)
      error (EXIT_FAILURE, 0, gettext ("memory exhausted"));
+ 
+   print_hash_info (ebl, scn, shdr, shstrndx, maxlength, nbucket, nsyms,


Index: elfutils.spec
===================================================================
RCS file: /cvs/dist/rpms/elfutils/devel/elfutils.spec,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- elfutils.spec	13 Jul 2006 01:23:18 -0000	1.71
+++ elfutils.spec	13 Jul 2006 02:06:25 -0000	1.72
@@ -1,5 +1,5 @@
 %define eu_version 0.122
-%define eu_release 2
+%define eu_release 3
 
 %if %{?_with_compat:1}%{!?_with_compat:0}
 %define compat 1
@@ -217,7 +217,7 @@
 %{_libdir}/libelf.so
 
 %changelog
-* Wed Jul 12 2006 Roland McGrath <roland at redhat.com> - 0.122-2
+* Wed Jul 12 2006 Roland McGrath <roland at redhat.com> - 0.122-3
 - Update to 0.122
   - Fix libdwfl sorting of modules with 64-bit addresses (#198225).
   - libebl: add function to test for relative relocation




More information about the fedora-cvs-commits mailing list