mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
- Fixed the format string in GetTempFileNameW.
svn path=/trunk/; revision=5452
This commit is contained in:
parent
0d5b332d52
commit
2ecabff0a3
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: file.c,v 1.45 2003/07/10 18:50:51 chorns Exp $
|
||||
/* $Id: file.c,v 1.46 2003/08/07 09:05:43 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -863,7 +863,7 @@ GetTempFileNameW(LPCWSTR lpPathName,
|
|||
HANDLE hFile;
|
||||
UINT unique = uUnique;
|
||||
UINT len;
|
||||
const WCHAR *format = L"%.*S\\~%.3S%4.4x.TMP";
|
||||
const WCHAR *format = L"%.*s\\~%.3s%4.4x.TMP";
|
||||
|
||||
DPRINT("GetTempFileNameW(lpPathName %S, lpPrefixString %.*S, "
|
||||
"uUnique %x, lpTempFileName %x)\n", lpPathName, 4,
|
||||
|
|
Loading…
Reference in a new issue