From: H. Peter Anvin Date: Fri, 29 May 2009 22:10:23 +0000 (-0700) Subject: Run Nindent on com32/lib/opendir.c X-Git-Tag: syslinux-3.83-pre2~310 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8dd5319ae7d9186efd44b328766c969786559751;p=platform%2Fupstream%2Fsyslinux.git Run Nindent on com32/lib/opendir.c Automatically reformat com32/lib/opendir.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/opendir.c b/com32/lib/opendir.c index aa2ba5b..6fc0f14 100644 --- a/com32/lib/opendir.c +++ b/com32/lib/opendir.c @@ -11,31 +11,30 @@ #include #include - DIR *opendir(const char *pathname) { - DIR *newdir; - com32sys_t regs; + DIR *newdir; + com32sys_t regs; - newdir = NULL; + newdir = NULL; - strlcpy(__com32.cs_bounce, pathname, __com32.cs_bounce_size); + strlcpy(__com32.cs_bounce, pathname, __com32.cs_bounce_size); - regs.eax.w[0] = 0x0020; - regs.esi.w[0] = OFFS(__com32.cs_bounce); - regs.es = SEG(__com32.cs_bounce); + regs.eax.w[0] = 0x0020; + regs.esi.w[0] = OFFS(__com32.cs_bounce); + regs.es = SEG(__com32.cs_bounce); - __com32.cs_intcall(0x22, ®s, ®s); + __com32.cs_intcall(0x22, ®s, ®s); - if (!(regs.eflags.l & EFLAGS_CF)) { - /* Initialization: malloc() then zero */ - newdir = calloc(1, sizeof(DIR)); - strcpy(newdir->dd_name, pathname); - newdir->dd_fd = regs.esi.w[0]; - newdir->dd_sect = regs.eax.l; - newdir->dd_stat = 0; - } + if (!(regs.eflags.l & EFLAGS_CF)) { + /* Initialization: malloc() then zero */ + newdir = calloc(1, sizeof(DIR)); + strcpy(newdir->dd_name, pathname); + newdir->dd_fd = regs.esi.w[0]; + newdir->dd_sect = regs.eax.l; + newdir->dd_stat = 0; + } - /* We're done */ - return newdir; + /* We're done */ + return newdir; }