do not run when IATTR feature is not supported
[util-vserver.git] / util-vserver / ensc_vector / list-free.c
index da68a24..ca2de67 100644 (file)
@@ -26,8 +26,9 @@
 void
 List_free(struct List *list)
 {
-  for (struct ListItem *itm = list->root;
-       itm!=0;)
+  struct ListItem      *itm;
+
+  for (itm = list->root; itm!=0; /* noop */)
   {
     struct ListItem    *next = itm->next;