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

index 2766370..e21736d 100644 (file)
@@ -2,8 +2,8 @@
 
 unsigned int atou(const char *s)
 {
-  unsigned int i = 0;
-  while (isdigit(*s))
-    i = i*10 + (*s++ - '0');
-  return i;
+    unsigned int i = 0;
+    while (isdigit(*s))
+       i = i * 10 + (*s++ - '0');
+    return i;
 }