components/binutils/patches/srec.c.patch
changeset 7310 88d40c6177a1
parent 7309 2655ef11c386
child 7312 6b323adaf9e7
--- a/components/binutils/patches/srec.c.patch	Wed Nov 02 08:17:06 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-# Patch is from RedHat binutils-2.25.1 src rpm.
-# No need to send to binutils, they know about it.
---- bfd/srec.c	2014-11-04 01:54:41.000000000 -0800
-+++ bfd/srec.c	2015-11-14 22:32:41.094053576 -0800
-@@ -249,7 +249,7 @@
-       char buf[40];
- 
-       if (! ISPRINT (c))
--	sprintf (buf, "\\%03o", (unsigned int) c);
-+	sprintf (buf, "\\%03o", (unsigned int) (c & 0xff));
-       else
- 	{
- 	  buf[0] = c;