diff options
author | Alan Modra <amodra@bigpond.net.au> | 2000-03-30 23:49:07 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2000-03-30 23:49:07 +0000 |
commit | cc3ca38022549b58580f3149da092c4d897b2c36 (patch) | |
tree | e6f0ec36cb9a825f14039ca7fda8a97dcd7628e8 /bfd/ihex.c | |
parent | 4949705caccd61f3fed44d709019b2b97d481bd2 (diff) | |
download | gdb-cc3ca38022549b58580f3149da092c4d897b2c36.tar.gz |
Set CHUNK size to 16 bytes to prevent download failures on lame targets.
Diffstat (limited to 'bfd/ihex.c')
-rw-r--r-- | bfd/ihex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/ihex.c b/bfd/ihex.c index 17740d8239e..d00c59b5e1a 100644 --- a/bfd/ihex.c +++ b/bfd/ihex.c @@ -146,7 +146,7 @@ static int ihex_sizeof_headers PARAMS ((bfd *, boolean)); /* The number of bytes we put on one line during output. */ -#define CHUNK (21) +#define CHUNK 16 /* Macros for converting between hex and binary. */ |