From 9ee338c78a77e2ca48a479c7a41c4843b616d588 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Fri, 29 May 2009 15:10:36 -0700 Subject: [PATCH] Run Nindent on sample/hello.c Automatically reformat sample/hello.c using Nindent. Do this for all files except HDT, gPXE and externally maintained libraries (zlib, tinyjpeg, libpng). Signed-off-by: H. Peter Anvin --- sample/hello.c | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/sample/hello.c b/sample/hello.c index e5460c3..25ceb8b 100644 --- a/sample/hello.c +++ b/sample/hello.c @@ -22,23 +22,22 @@ static inline void memset(void *buf, int ch, unsigned int len) { - asm volatile("cld; rep; stosb" - : "+D" (buf), "+c" (len) : "a" (ch) : "memory"); + asm volatile ("cld; rep; stosb":"+D" (buf), "+c"(len):"a"(ch):"memory"); } int __start(void) { - const char *msg = "Hello, World!\r\n"; - com32sys_t inreg; - const char *p; + const char *msg = "Hello, World!\r\n"; + com32sys_t inreg; + const char *p; - memset(&inreg, 0, sizeof inreg); + memset(&inreg, 0, sizeof inreg); - for ( p = msg ; *p ; p++ ) { - inreg.edx.b[0] = *p; - inreg.eax.b[1] = 0x02; /* Write Character */ - __com32.cs_intcall(0x21, &inreg, NULL); - } + for (p = msg; *p; p++) { + inreg.edx.b[0] = *p; + inreg.eax.b[1] = 0x02; /* Write Character */ + __com32.cs_intcall(0x21, &inreg, NULL); + } - return 0; + return 0; } -- 2.7.4