Skip to content

Commit f3b690c

Browse files
diseanbinarymaster
authored andcommitted
[REACTOS] Shut up some noisy test output
1 parent 2d6af83 commit f3b690c

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

base/services/eventlog/rpc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ ElfCreateEventLogHandle(PLOGHANDLE* LogHandle,
9898
LogsActive = LogfListItemCount();
9999
if (LogsActive == 0)
100100
{
101-
DPRINT1("EventLog service reports no log files!\n");
101+
// DPRINT1("EventLog service reports no log files!\n");
102102
Status = STATUS_UNSUCCESSFUL;
103103
goto Done;
104104
}

base/services/schedsvc/rpcserver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ RpcThreadRoutine(
5959
Status = RpcServerListen(1, RPC_C_LISTEN_MAX_CALLS_DEFAULT, FALSE);
6060
if (Status != RPC_S_OK)
6161
{
62-
ERR("RpcServerListen() failed (Status %lx)\n", Status);
62+
// ERR("RpcServerListen() failed (Status %lx)\n", Status);
6363
}
6464

6565
return 0;

base/services/srvsvc/rpcserver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ RpcThreadRoutine(
6161
Status = RpcServerListen(1, RPC_C_LISTEN_MAX_CALLS_DEFAULT, FALSE);
6262
if (Status != RPC_S_OK)
6363
{
64-
ERR("RpcServerListen() failed (Status %lx)\n", Status);
64+
// ERR("RpcServerListen() failed (Status %lx)\n", Status);
6565
}
6666

6767
return 0;

base/services/w32time/w32time.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ SetTime(VOID)
168168
WCHAR szData[MAX_VALUE_NAME] = L"";
169169
DWORD cbName = sizeof(szData);
170170

171-
DPRINT("Entered SetTime.\n");
171+
// DPRINT("Entered SetTime.\n");
172172

173173
lRet = RegOpenKeyExW(HKEY_LOCAL_MACHINE,
174174
L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\DateTime\\Servers",
@@ -189,7 +189,7 @@ SetTime(VOID)
189189

190190
RegCloseKey(hKey);
191191

192-
DPRINT("Time Server is '%S'.\n", szData);
192+
// DPRINT("Time Server is '%S'.\n", szData);
193193

194194
/* Is the given string empty? */
195195
if (cbName == 0 || szData[0] == '\0')

base/system/services/services.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ ScmLogEvent(DWORD dwEventId,
182182
L"Service Control Manager");
183183
if (hLog == NULL)
184184
{
185-
DPRINT1("ScmLogEvent: RegisterEventSourceW failed %lu\n", GetLastError());
185+
// DPRINT1("ScmLogEvent: RegisterEventSourceW failed %lu\n", GetLastError());
186186
return;
187187
}
188188

dll/win32/advapi32/service/eventlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ EVENTLOG_HANDLE_W_unbind(EVENTLOG_HANDLE_W UNCServerName,
141141
status = RpcBindingFree(&hBinding);
142142
if (status != RPC_S_OK)
143143
{
144-
ERR("RpcBindingFree returned 0x%x\n", status);
144+
// ERR("RpcBindingFree returned 0x%x\n", status);
145145
}
146146
}
147147

dll/win32/advapi32/service/scm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ SVCCTL_HANDLEW_unbind(SVCCTL_HANDLEW szMachineName,
137137
status = RpcBindingFree(&hBinding);
138138
if (status != RPC_S_OK)
139139
{
140-
ERR("RpcBindingFree returned 0x%x\n", status);
140+
// ERR("RpcBindingFree returned 0x%x\n", status);
141141
}
142142
}
143143

ntoskrnl/config/cmsysini.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1183,7 +1183,7 @@ CmpGetRegistryPath(VOID)
11831183
ConfigPath = L"\\SystemRoot\\";
11841184
}
11851185

1186-
DPRINT1("CmpGetRegistryPath: ConfigPath = '%S'\n", ConfigPath);
1186+
// DPRINT1("CmpGetRegistryPath: ConfigPath = '%S'\n", ConfigPath);
11871187

11881188
return ConfigPath;
11891189
}

sdk/lib/cmlib/hivewrt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ HvHiveWillShrink(
571571
_In_ PHHIVE RegistryHive)
572572
{
573573
/* No shrinking yet */
574-
UNIMPLEMENTED_ONCE;
574+
// UNIMPLEMENTED_ONCE;
575575
return FALSE;
576576
}
577577

sdk/lib/drivers/arbiter/arbiter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ ArbInitializeArbiterInstance(
400400
return STATUS_SUCCESS;
401401
}
402402

403-
DPRINT1("ArbInitializeArbiterInstance: Status %X\n", Status);
403+
DPRINT("ArbInitializeArbiterInstance: Status %X\n", Status);
404404

405405
return Status;
406406
}

0 commit comments

Comments
 (0)