From 56fce4684c1008bbbf031e93bccad44a85bb05d7 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 29 May 2009 15:10:27 -0700 Subject: [PATCH] Run Nindent on com32/lib/syslinux/run_command.c Automatically reformat com32/lib/syslinux/run_command.c using Nindent. Do this for all files except HDT, gPXE and externally maintained libraries (zlib, tinyjpeg, libpng). Signed-off-by: H. Peter Anvin --- com32/lib/syslinux/run_command.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/com32/lib/syslinux/run_command.c b/com32/lib/syslinux/run_command.c index eec6ca4..4693e16 100644 --- a/com32/lib/syslinux/run_command.c +++ b/com32/lib/syslinux/run_command.c @@ -32,16 +32,16 @@ __noreturn syslinux_run_command(const char *command) { - static com32sys_t ireg; + static com32sys_t ireg; - strcpy(__com32.cs_bounce, command); + strcpy(__com32.cs_bounce, command); - ireg.eax.w[0] = 0x0003; - ireg.es = SEG(__com32.cs_bounce); - ireg.ebx.w[0] = OFFS(__com32.cs_bounce); + ireg.eax.w[0] = 0x0003; + ireg.es = SEG(__com32.cs_bounce); + ireg.ebx.w[0] = OFFS(__com32.cs_bounce); - __intcall(0x22, &ireg, NULL); + __intcall(0x22, &ireg, NULL); - /* Should not return even on failure */ - for(;;); + /* Should not return even on failure */ + for (;;) ; } -- 2.7.4