mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-22 21:30:42 +07:00
staging: unisys: delete extra space character in vbuschannel_itoa()
There's no need for that extra space in the typecast in vbuschannel_itoa(), so just delete it. Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8d507c664d
commit
0d2400c358
@ -118,7 +118,7 @@ vbuschannel_itoa(char *p, int remain, int num)
|
||||
}
|
||||
/* form a backwards decimal ascii string in <s> */
|
||||
while (num > 0) {
|
||||
if (digits >= (int) sizeof(s))
|
||||
if (digits >= (int)sizeof(s))
|
||||
return 0;
|
||||
s[digits++] = (num % 10) + '0';
|
||||
num = num / 10;
|
||||
|
Loading…
Reference in New Issue
Block a user