Removed superflous code.
[deliverable/binutils-gdb.git] / gdb / standalone.c
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;
This page took 0.024214 seconds and 4 git commands to generate.