mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
- Silence debug messages.
svn path=/trunk/; revision=31451
This commit is contained in:
parent
f9840d8e29
commit
f711c1af2c
1 changed files with 3 additions and 3 deletions
|
@ -454,7 +454,7 @@ EnumSystemLocalesW (
|
|||
if (!NT_SUCCESS(result))
|
||||
return result;
|
||||
|
||||
DPRINT1("Registry key succesfully opened\n");
|
||||
DPRINT("Registry key succesfully opened\n");
|
||||
|
||||
length = sizeof(KEY_VALUE_FULL_INFORMATION) + 255*2;//MAX_PATH*sizeof(WCHAR);
|
||||
pFullInfo = (PKEY_VALUE_FULL_INFORMATION)&fullInfo;
|
||||
|
@ -469,7 +469,7 @@ EnumSystemLocalesW (
|
|||
length,
|
||||
&length);
|
||||
|
||||
DPRINT1("First enumerate call result=%x\n", result);
|
||||
DPRINT("First enumerate call result=%x\n", result);
|
||||
while (result != STATUS_NO_MORE_ENTRIES)
|
||||
{
|
||||
int i;
|
||||
|
@ -484,7 +484,7 @@ EnumSystemLocalesW (
|
|||
|
||||
lpLocale[8]=0;
|
||||
|
||||
DPRINT1("Locale=%S\n", lpLocale);
|
||||
DPRINT("Locale=%S\n", lpLocale);
|
||||
|
||||
// Call Enum func
|
||||
if (!lpLocaleEnumProc((LPWSTR)lpLocale))
|
||||
|
|
Loading…
Reference in a new issue