Fixed indentation

Fixed indentation by replacing TABs by 4 spaces.
This commit is contained in:
Uwe Stieber 2013-09-24 13:37:00 +02:00
parent d6498a63b8
commit 6f1d6a5dbe
2 changed files with 5 additions and 5 deletions

View File

@ -186,10 +186,10 @@ void Agent::handlePacket(ReadBuffer &packet)
break;
case AgentMsg::GetProcessId:
ASSERT(packet.eof());
if (m_childProcess == NULL)
result = -1;
else
result = GetProcessId(m_childProcess);
if (m_childProcess == NULL)
result = -1;
else
result = GetProcessId(m_childProcess);
break;
default:
trace("Unrecognized message, id:%d", type);

View File

@ -28,7 +28,7 @@ struct AgentMsg
StartProcess,
SetSize,
GetExitCode,
GetProcessId
GetProcessId
};
};