mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 20:32:18 +00:00
- Fix incorrect usage of sprintf.
svn path=/trunk/; revision=27311
This commit is contained in:
parent
e129100556
commit
f290d37f66
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ sprintf_nt(IN PCHAR Buffer,
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
va_start(ap, Format);
|
va_start(ap, Format);
|
||||||
sprintf(Buffer, Format, ap);
|
vsprintf(Buffer, Format, ap);
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue