Run Nindent on com32/lib/sys/write.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/sys/write.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/sys/write.c

index 929ec3e..7961fd2 100644 (file)
 
 ssize_t write(int fd, void *buf, size_t count)
 {
-  struct file_info *fp = &__file_info[fd];
+    struct file_info *fp = &__file_info[fd];
 
-  if ( fd >= NFILES || !fp->oop ) {
-    errno = EBADF;
-    return -1;
-  }
+    if (fd >= NFILES || !fp->oop) {
+       errno = EBADF;
+       return -1;
+    }
 
-  return fp->oop->write(fp, buf, count);
+    return fp->oop->write(fp, buf, count);
 }