Dont format some things

This commit is contained in:
Pavel Krymets 2018-04-09 11:00:55 -07:00
parent 8f1781f7eb
commit 0feb83b637
3 changed files with 6 additions and 6 deletions

View File

@ -112,7 +112,7 @@ APPLICATION_INFO::UpdateAppOfflineFileHandle()
// if it was, log that app_offline has been dropped.
if (m_fAppOfflineFound)
{
UTILITY::LogEventF(g_hEventLog,
UTILITY::LogEvent(g_hEventLog,
EVENTLOG_INFORMATION_TYPE,
ASPNETCORE_EVENT_RECYCLE_APPOFFLINE_REMOVED,
ASPNETCORE_EVENT_RECYCLE_APPOFFLINE_REMOVED_MSG);
@ -258,7 +258,7 @@ APPLICATION_INFO::FindRequestHandlerAssembly()
{
if (FAILED(hr = FindNativeAssemblyFromHostfxr(&struFileName)))
{
UTILITY::LogEventF(g_hEventLog,
UTILITY::LogEvent(g_hEventLog,
EVENTLOG_INFORMATION_TYPE,
ASPNETCORE_EVENT_INPROCESS_RH_MISSING,
ASPNETCORE_EVENT_INPROCESS_RH_MISSING_MSG);
@ -268,7 +268,7 @@ APPLICATION_INFO::FindRequestHandlerAssembly()
{
if (FAILED(hr = FindNativeAssemblyFromGlobalLocation(&struFileName)))
{
UTILITY::LogEventF(g_hEventLog,
UTILITY::LogEvent(g_hEventLog,
EVENTLOG_INFORMATION_TYPE,
ASPNETCORE_EVENT_OUT_OF_PROCESS_RH_MISSING,
ASPNETCORE_EVENT_OUT_OF_PROCESS_RH_MISSING_MSG);

View File

@ -160,7 +160,7 @@ HRESULT
if (fDisableANCM)
{
UTILITY::LogEventF(g_hEventLog,
UTILITY::LogEvent(g_hEventLog,
EVENTLOG_WARNING_TYPE,
ASPNETCORE_EVENT_MODULE_DISABLED,
ASPNETCORE_EVENT_MODULE_DISABLED_MSG);

View File

@ -637,11 +637,11 @@ UTILITY::LogEventF(
...
)
{
STACK_STRU ( strEventMsg, 256 );
va_list argsList;
va_start(argsList, pstrMsg);
STACK_STRU ( strEventMsg, 256 );
if (SUCCEEDED(strEventMsg.SafeSnwprintf(
pstrMsg,
argsList)))