Run Nindent on com32/lib/syslinux/freelist.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:26 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:26 +0000 (15:10 -0700)
Automatically reformat com32/lib/syslinux/freelist.c using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/lib/syslinux/freelist.c

index 304e12e..f73a69c 100644 (file)
 
 void syslinux_free_movelist(struct syslinux_movelist *list)
 {
-  struct syslinux_movelist *m;
+    struct syslinux_movelist *m;
 
-  while (list) {
-    m = list;
-    list = list->next;
-    free(m);
-  }
+    while (list) {
+       m = list;
+       list = list->next;
+       free(m);
+    }
 }