misc: remove GNU Indent directives
[vpp.git] / src / vppinfra / test_pool_iterate.c
index 4e8e2df..fc4be6d 100644 (file)
@@ -77,9 +77,8 @@ main (int argc, char *argv[])
     }
   while (next != ~0);
 
-  /* *INDENT-OFF* */
-  pool_foreach (junk, tp,
-  ({
+  pool_foreach (junk, tp)
+   {
     int is_free;
 
     is_free = pool_is_free_index (tp, junk - tp);
@@ -93,8 +92,7 @@ main (int argc, char *argv[])
           if (i != 1 && i != 65)
             clib_warning ("oops, busy index %d reported free", i);
         }
-  }));
-  /* *INDENT-ON* */
+  }
 
   return 0;
 }