Fixed a typo

svn path=/trunk/; revision=1395
This commit is contained in:
Eric Kohl 2000-10-08 19:13:01 +00:00
parent 69afd5910f
commit 26aa5fb4dd
2 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ vwprintf (format, arg)
const wchar_t *format;
va_list arg;
{
int ret = vfprintf (stdout, format, arg);
int ret = vfwprintf (stdout, format, arg);
fflush(stdout);
return ret;
}

View file

@ -1,4 +1,4 @@
/* $Id: sid.c,v 1.5 2000/10/08 12:50:13 ekohl Exp $
/* $Id: sid.c,v 1.6 2000/10/08 19:12:01 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -102,7 +102,7 @@ RtlConvertSidToUnicodeString(PUNICODE_STRING String,
if (!RtlValidSid(Sid))
return STATUS_INVALID_SID;
Ptr = Bufer;
Ptr = Buffer;
Ptr += swprintf (Ptr,
L"S-%u-",
Sid->Revision);