Use tabs for indentation according to Google style guidelines "whitespace/usr_tab_for_indentation"

This commit is contained in:
Stefan Persson 2012-12-05 12:29:45 +01:00
parent 8d90a4e14a
commit 58d58a8640
2 changed files with 7 additions and 7 deletions

View file

@ -68,10 +68,10 @@ void Socket::connect(const std::wstring &server) {
DWORD dwMode = PIPE_READMODE_MESSAGE;
fSuccess = SetNamedPipeHandleState(
d->hPipe, // pipe handle
&dwMode, // new pipe mode
NULL, // don't set maximum bytes
NULL); // don't set maximum time
d->hPipe, // pipe handle
&dwMode, // new pipe mode
NULL, // don't set maximum bytes
NULL); // don't set maximum time
if (!fSuccess) {
return;

View file

@ -16,10 +16,10 @@ int main(int argc, char **argv) {
SERVICE_TABLE_ENTRY serviceTable[] = {
{serviceName, TelldusWinService::serviceMain },
{ 0, 0 }
};
{ 0, 0 }
};
StartServiceCtrlDispatcher( serviceTable );
StartServiceCtrlDispatcher( serviceTable );
return 0;
}