Move copy_u.w to MSA64 ASE, remove copy_u.d.
[deliverable/binutils-gdb.git] / bfd / srec.c
index 8de6e425cb8ad4d86bad4bd83bdaa0a9e203d5ee..96b6a2f084f758c23fd5f36d648698cb4a11ce96 100644 (file)
@@ -1,5 +1,5 @@
 /* BFD back-end for s-record objects.
-   Copyright (C) 1990-2014 Free Software Foundation, Inc.
+   Copyright (C) 1990-2015 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -249,7 +249,7 @@ srec_bad_byte (bfd *abfd,
       char buf[40];
 
       if (! ISPRINT (c))
-       sprintf (buf, "\\%03o", (unsigned int) c);
+       sprintf (buf, "\\%03o", (unsigned int) c & 0xff);
       else
        {
          buf[0] = c;
This page took 0.024834 seconds and 4 git commands to generate.