diff options
author | Steve Chamberlain <steve@cygnus> | 1991-04-03 22:10:51 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-04-03 22:10:51 +0000 |
commit | 36773af51a039691db1816f3ebe401a8f2e5393c (patch) | |
tree | 88340a6b887cdcf11b78e365600660161ef975e4 /bfd | |
parent | cec2111e478d3350946a5b5cc6c6ac3cece0ccdc (diff) | |
download | gdb-36773af51a039691db1816f3ebe401a8f2e5393c.zip gdb-36773af51a039691db1816f3ebe401a8f2e5393c.tar.gz gdb-36773af51a039691db1816f3ebe401a8f2e5393c.tar.bz2 |
Fixed typo
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/srec.c | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -42,7 +42,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* $Id$ * $Log$ - * Revision 1.1 1991/03/21 21:11:20 gumby + * Revision 1.2 1991/04/03 22:10:51 steve + * Fixed typo + * + * Revision 1.1.1.1 1991/03/21 21:11:22 gumby + * Back from Intel with Steve + * + * Revision 1.1 1991/03/21 21:11:20 gumby * Initial revision * * Revision 1.1 1991/03/13 00:22:29 chrisb @@ -61,7 +67,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ * Initial revision * */ - +#include "sysdep.h" +#include "bfd.h" #include "libbfd.h" @@ -319,7 +326,7 @@ int bytes_to_do; unsigned int size; unsigned int check_sum; byte_as_two_char_type *data; - int bytes_this_chunk = bytes_to_do - bytes_written; + unsigned int bytes_this_chunk = bytes_to_do - bytes_written; if (bytes_this_chunk > CHUNK) { bytes_this_chunk = CHUNK; |