From: Nick Clifton Date: Thu, 30 Aug 2001 12:19:49 +0000 (+0000) Subject: omitted in previous delta X-Git-Tag: cygnus_cvs_20020108_pre~1493 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=063cb91d19b67acb7c7fe39396e5f396a1f1b6a9;p=platform%2Fupstream%2Fbinutils.git omitted in previous delta --- 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);