mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Fixed an invalid printf() format type
svn path=/trunk/; revision=974
This commit is contained in:
parent
19e258120e
commit
f09ef9894a
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: loader.c,v 1.43 2000/01/26 21:10:16 jfilby Exp $
|
||||
/* $Id: loader.c,v 1.44 2000/01/31 20:25:43 ekohl Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -176,7 +176,7 @@ static VOID LdrLoadAutoConfigDriver (LPWSTR RelativeDriverName)
|
|||
NTSTATUS Status;
|
||||
UNICODE_STRING DriverName;
|
||||
|
||||
DbgPrint("Loading %w\n",RelativeDriverName);
|
||||
DbgPrint("Loading %S\n",RelativeDriverName);
|
||||
|
||||
LdrGetSystemDirectory(TmpFileName, (MAX_PATH * sizeof(WCHAR)));
|
||||
wcscat(TmpFileName, L"\\drivers\\");
|
||||
|
|
Loading…
Reference in a new issue