Commit 6f6aa9b8 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

schedsvc: Drop WINE_ prefix from ERR().

parent 6ab6564b
......@@ -129,35 +129,35 @@ static RPC_STATUS RPC_init(void)
status = RpcServerUseProtseqEpW(transport, 0, NULL, NULL);
if (status != RPC_S_OK)
{
WINE_ERR("RpcServerUseProtseqEp error %#x\n", status);
ERR("RpcServerUseProtseqEp error %#x\n", status);
return status;
}
status = RpcServerRegisterIf(ITaskSchedulerService_v1_0_s_ifspec, 0, 0);
if (status != RPC_S_OK)
{
WINE_ERR("RpcServerRegisterIf error %#x\n", status);
ERR("RpcServerRegisterIf error %#x\n", status);
return status;
}
status = RpcServerInqBindings(&sched_bindings);
if (status != RPC_S_OK)
{
WINE_ERR("RpcServerInqBindings error %#x\n", status);
ERR("RpcServerInqBindings error %#x\n", status);
return status;
}
status = RpcEpRegisterW(ITaskSchedulerService_v1_0_s_ifspec, sched_bindings, NULL, NULL);
if (status != RPC_S_OK)
{
WINE_ERR("RpcEpRegister error %#x\n", status);
ERR("RpcEpRegister error %#x\n", status);
return status;
}
status = RpcServerListen(1, RPC_C_LISTEN_MAX_CALLS_DEFAULT, TRUE);
if (status != RPC_S_OK)
{
WINE_ERR("RpcServerListen error %#x\n", status);
ERR("RpcServerListen error %#x\n", status);
return status;
}
return RPC_S_OK;
......@@ -180,7 +180,7 @@ void WINAPI ServiceMain(DWORD argc, LPWSTR *argv)
schedsvc_handle = RegisterServiceCtrlHandlerW(scheduleW, schedsvc_handler);
if (!schedsvc_handle)
{
WINE_ERR("RegisterServiceCtrlHandler error %d\n", GetLastError());
ERR("RegisterServiceCtrlHandler error %d\n", GetLastError());
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment