From: H. Peter Anvin Date: Fri, 29 May 2009 22:10:25 +0000 (-0700) Subject: Run Nindent on com32/lib/sys/ftell.c X-Git-Tag: syslinux-3.83-pre2~249 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=901e44fbc16eb38c26e865aae2c4ae99e16934b7;p=platform%2Fupstream%2Fsyslinux.git Run Nindent on com32/lib/sys/ftell.c Automatically reformat com32/lib/sys/ftell.c using Nindent. Do this for all files except HDT, gPXE and externally maintained libraries (zlib, tinyjpeg, libpng). Signed-off-by: H. Peter Anvin --- diff --git a/com32/lib/sys/ftell.c b/com32/lib/sys/ftell.c index 3f10916..5c1a944 100644 --- a/com32/lib/sys/ftell.c +++ b/com32/lib/sys/ftell.c @@ -7,10 +7,10 @@ #include #include "sys/file.h" -long ftell(FILE *stream) +long ftell(FILE * stream) { - int fd = fileno(stream); - struct file_info *fp = &__file_info[fd]; + int fd = fileno(stream); + struct file_info *fp = &__file_info[fd]; - return fp->i.offset; + return fp->i.offset; }