aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-08-30 12:19:49 +0000
committerNick Clifton <nickc@redhat.com>2001-08-30 12:19:49 +0000
commit063cb91d19b67acb7c7fe39396e5f396a1f1b6a9 (patch)
tree5acb18a25e7fdf516e2f067dac3cc7e894089c3f /ld
parentf235248854c2e4645a857e6623b4d42d7dc39d12 (diff)
downloadgdb-063cb91d19b67acb7c7fe39396e5f396a1f1b6a9.zip
gdb-063cb91d19b67acb7c7fe39396e5f396a1f1b6a9.tar.gz
gdb-063cb91d19b67acb7c7fe39396e5f396a1f1b6a9.tar.bz2
omitted in previous delta
Diffstat (limited to 'ld')
-rw-r--r--ld/ldmain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/ldmain.c b/ld/ldmain.c
index f419499..3b00d12 100644
--- a/ld/ldmain.c
+++ b/ld/ldmain.c
@@ -325,12 +325,12 @@ main (argc, argv)
if (saved_script_handle)
{
- static const int BSIZE = 8192;
+ static const int BufferSize = 8192;
size_t n;
- char *buf = xmalloc (BSIZE);
+ char *buf = xmalloc (BufferSize);
rewind (saved_script_handle);
- while ((n = fread (buf, 1, BSIZE - 1, saved_script_handle)) > 0)
+ while ((n = fread (buf, 1, BufferSize - 1, saved_script_handle)) > 0)
{
buf [n] = 0;
info_msg (buf);