mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 16:51:39 +00:00
[KERNEL32]: Fix GCC build.
svn path=/trunk/; revision=68387
This commit is contained in:
parent
7ffba6f094
commit
cf58e13f77
1 changed files with 3 additions and 3 deletions
|
@ -86,10 +86,10 @@ GetTempFileNameW(IN LPCWSTR lpPathName,
|
|||
IN UINT uUnique,
|
||||
OUT LPWSTR lpTempFileName)
|
||||
{
|
||||
CHAR * Let;
|
||||
PUCHAR Let;
|
||||
HANDLE TempFile;
|
||||
UINT ID, Num = 0;
|
||||
CHAR IDString[5];
|
||||
UCHAR IDString[5];
|
||||
WCHAR * TempFileName;
|
||||
BASE_API_MESSAGE ApiMessage;
|
||||
PBASE_GET_TEMP_FILE GetTempFile = &ApiMessage.Data.GetTempFileRequest;
|
||||
|
@ -176,7 +176,7 @@ GetTempFileNameW(IN LPCWSTR lpPathName,
|
|||
}
|
||||
|
||||
/* Convert that ID to wchar */
|
||||
RtlIntegerToChar(ID, 0x10, sizeof(IDString), IDString);
|
||||
RtlIntegerToChar(ID, 0x10, sizeof(IDString), (PCHAR)IDString);
|
||||
Let = IDString;
|
||||
do
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue