mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 12:16:31 +00:00
🔧 修复了一些隐式类型转换
This commit is contained in:
@ -346,7 +346,7 @@ static int vsprintf(char *buf, const char *fmt, va_list args)
|
||||
if (qualifier == 'l')
|
||||
ip = va_arg(args, long long *);
|
||||
else
|
||||
ip = va_arg(args, int *);
|
||||
ip = (ll*)va_arg(args, int *);
|
||||
|
||||
*ip = str - buf;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user