* standalone.c (open, _initialize_standalone): Fix obvious typos
authorFred Fish <fnf@specifix.com>
Thu, 22 Feb 1996 01:58:53 +0000 (01:58 +0000)
committerFred Fish <fnf@specifix.com>
Thu, 22 Feb 1996 01:58:53 +0000 (01:58 +0000)
reported by Martin Pool <martin@citr.uq.oz.au>.

gdb/ChangeLog
gdb/standalone.c

index 50564218059ff7588e6e110a6667768d6eac3dbf..76fe07cb601d742e72c3f63a990c1b1d97b122f9 100644 (file)
@@ -1,3 +1,8 @@
+Wed Feb 21 19:00:21 1996  Fred Fish  <fnf@ninemoons.com>
+
+       * standalone.c (open, _initialize_standalone): Fix obvious typos
+       reported by Martin Pool <martin@citr.uq.oz.au>.
+
 Wed Feb 21 14:24:04 1996  Jeffrey A Law  (law@cygnus.com)
 
        * solib.c (solib_create_inferior_hook): Fix thinko.
index 52c8ee2d9d25df9dfcab1b1fc65d38c0c76b34b8..13fc4768b4ede0779879df4fe9fb3a7c48521a91 100644 (file)
@@ -141,8 +141,7 @@ open (filename, modes)
       return -1;
     }
 
-  for (next - files_start; * (int *) next;
-       next += * (int *) next)
+  for (next = files_start; * (int *) next; next += * (int *) next)
     {
       if (!STRCMP (next + 4, filename))
        {
@@ -584,9 +583,7 @@ _initialize_standalone ()
 
   /* Find the end of the data on files.  */
 
-  for (next - files_start; * (int *) next;
-       next += * (int *) next)
-    {}
+  for (next = files_start; * (int *) next; next += * (int *) next) {}
 
   /* That is where free storage starts for sbrk to give out.  */
   next_free = next;