Run Nindent on com32/lib/strtok.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:24 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:24 +0000 (15:10 -0700)
Automatically reformat com32/lib/strtok.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/strtok.c

index e89a9c5..d2e37bb 100644 (file)
@@ -6,10 +6,10 @@
 
 char *strtok(char *s, const char *delim)
 {
-  static char *holder;
+    static char *holder;
 
-  if ( s )
-    holder = s;
+    if (s)
+       holder = s;
 
-  return strsep(&holder, delim);
+    return strsep(&holder, delim);
 }