omitted in previous delta
authorNick Clifton <nickc@redhat.com>
Thu, 30 Aug 2001 12:19:49 +0000 (12:19 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 30 Aug 2001 12:19:49 +0000 (12:19 +0000)
ld/ldmain.c

index f419499a1ffa4c80a925e44c31be23e66680d700..3b00d1250b0bf08333a9f7164e7f3a510e508043 100644 (file)
@@ -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);
This page took 0.040375 seconds and 4 git commands to generate.