diff options
author | Zhang Jiaming <jiaming@nfschina.com> | 2022-06-21 10:15:06 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2023-02-14 18:37:18 +0100 |
commit | 73c4f828ce6586b83f9d2a1824b5bf7a72acce62 (patch) | |
tree | c9f2be7fa754d96aa0a949e1e932595143c5d5ba /arch/alpha/boot | |
parent | alpha: replace NR_SYSCALLS by NR_syscalls (diff) | |
download | linux-73c4f828ce6586b83f9d2a1824b5bf7a72acce62.tar.xz linux-73c4f828ce6586b83f9d2a1824b5bf7a72acce62.zip |
alpha: Add some spaces to ensure format specification
Add a space after ','.
Add spaces around the '=', '>' and '=='.
Signed-off-by: Zhang Jiaming <jiaming@nfschina.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'arch/alpha/boot')
-rw-r--r-- | arch/alpha/boot/stdio.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/alpha/boot/stdio.c b/arch/alpha/boot/stdio.c index 60f73ccd2e89..e6d1ebff4209 100644 --- a/arch/alpha/boot/stdio.c +++ b/arch/alpha/boot/stdio.c @@ -42,8 +42,8 @@ static int skip_atoi(const char **s) static char * number(char * str, unsigned long long num, int base, int size, int precision, int type) { - char c,sign,tmp[66]; - const char *digits="0123456789abcdefghijklmnopqrstuvwxyz"; + char c, sign, tmp[66]; + const char *digits = "0123456789abcdefghijklmnopqrstuvwxyz"; int i; if (type & LARGE) @@ -83,14 +83,14 @@ static char * number(char * str, unsigned long long num, int base, int size, int precision = i; size -= precision; if (!(type&(ZEROPAD+LEFT))) - while(size-->0) + while (size-- > 0) *str++ = ' '; if (sign) *str++ = sign; if (type & SPECIAL) { if (base==8) *str++ = '0'; - else if (base==16) { + else if (base == 16) { *str++ = '0'; *str++ = digits[33]; } @@ -125,7 +125,7 @@ int vsprintf(char *buf, const char *fmt, va_list args) /* 'z' changed to 'Z' --davidm 1/25/99 */ - for (str=buf ; *fmt ; ++fmt) { + for (str = buf ; *fmt ; ++fmt) { if (*fmt != '%') { *str++ = *fmt; continue; @@ -296,7 +296,7 @@ int sprintf(char * buf, const char *fmt, ...) int i; va_start(args, fmt); - i=vsprintf(buf,fmt,args); + i = vsprintf(buf, fmt, args); va_end(args); return i; } |