[TASKMGR]

* Minor style changes in wWinMain.

svn path=/trunk/; revision=64893
This commit is contained in:
Amine Khaldi 2014-10-22 16:51:25 +00:00
parent 4ef9ff28e2
commit f47eeb21ab

View file

@ -152,9 +152,10 @@ int APIENTRY wWinMain(HINSTANCE hInstance,
*/
/* Get a token for this process. */
if (OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) {
if (OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
{
/* Get the LUID for the debug privilege. */
if(LookupPrivilegeValueW(NULL, SE_DEBUG_NAME, &tkp.Privileges[0].Luid))
if (LookupPrivilegeValueW(NULL, SE_DEBUG_NAME, &tkp.Privileges[0].Luid))
{
tkp.PrivilegeCount = 1; /* one privilege to set */
tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
@ -169,7 +170,8 @@ int APIENTRY wWinMain(HINSTANCE hInstance,
LoadSettings();
/* Initialize perf data */
if (!PerfDataInitialize()) {
if (!PerfDataInitialize())
{
return -1;
}