Skip to content

Commit dc87b0b

Browse files
committed
Fix indentation
1 parent 97bc6aa commit dc87b0b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

stub/cbits/stub.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ class Response {
126126
// Then status
127127
this->sock.write((char *) &status_payload, sizeof(uint16_t));
128128
// then the body, usually empty
129-
trace("FLUSHING(%lu)( ", len);
130-
for (int i = 0; i < len; i++)
131-
{
132-
trace("%02X", buf[i]);
133-
}
134-
trace("\n");
129+
trace("FLUSHING(%lu)( ", len);
130+
for (int i = 0; i < len; i++)
131+
{
132+
trace("%02X", buf[i]);
133+
}
134+
trace("\n");
135135
this->sock.write(this->buf, len);
136136
this->tail = this->buf;
137137
}

0 commit comments

Comments
 (0)