Use tabs for indentation according to Google style guidelines "whitespace/usr_tab_for_indentation"
This commit is contained in:
parent
8d90a4e14a
commit
58d58a8640
2 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue