projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f235248
)
omitted in previous delta
author
Nick Clifton
<nickc@redhat.com>
Thu, 30 Aug 2001 12:19:49 +0000
(12:19 +0000)
committer
Nick Clifton
<nickc@redhat.com>
Thu, 30 Aug 2001 12:19:49 +0000
(12:19 +0000)
ld/ldmain.c
patch
|
blob
|
history
diff --git
a/ld/ldmain.c
b/ld/ldmain.c
index f419499a1ffa4c80a925e44c31be23e66680d700..3b00d1250b0bf08333a9f7164e7f3a510e508043 100644
(file)
--- a/
ld/ldmain.c
+++ b/
ld/ldmain.c
@@
-325,12
+325,12
@@
main (argc, argv)
if (saved_script_handle)
{
- static const int B
SIZE
= 8192;
+ static const int B
ufferSize
= 8192;
size_t n;
- char *buf = xmalloc (B
SIZE
);
+ char *buf = xmalloc (B
ufferSize
);
rewind (saved_script_handle);
- while ((n = fread (buf, 1, B
SIZE
- 1, saved_script_handle)) > 0)
+ while ((n = fread (buf, 1, B
ufferSize
- 1, saved_script_handle)) > 0)
{
buf [n] = 0;
info_msg (buf);