diff options
author | Vyshu <vyshu@google.com> | 2020-10-09 17:35:14 +0000 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2020-10-11 06:43:01 +0000 |
commit | 852f57d536a8541f080e1f1feafa9e5c32dc73a5 (patch) | |
tree | 301cc6929cbb888bd2c2d300f28f9ff5b51c03c6 /test_http_server.cc | |
parent | ce99ee79f77887c5b680b1503490484632201ca7 (diff) |
update engine: clang formatting
Fix clang formatting issues for all .cc, .h, and .proto files
in update engine.
~/trunk/src/chromium/src/buildtools/linux64/clang-format -i \
-style=file $(find update_engine -name '*.h' -o -name '*.cc' \
-o -name '*.cpp' -o -name '*.c')
BUG=b:169679497
TEST=CQ pass
Change-Id: I4fde01d3e734dbffaa2c7e7b667503d310abccae
Reviewed-on: https://chromium-review.googlesource.com/c/aosp/platform/system/update_engine/+/2462840
Reviewed-by: Amin Hassani <ahassani@chromium.org>
Reviewed-by: Jae Hoon Kim <kimjae@chromium.org>
Tested-by: Vyshu Khota <vyshu@google.com>
Commit-Queue: Vyshu Khota <vyshu@google.com>
Diffstat (limited to 'test_http_server.cc')
-rw-r--r-- | test_http_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_http_server.cc b/test_http_server.cc index cf6f10db..a2f1e052 100644 --- a/test_http_server.cc +++ b/test_http_server.cc @@ -190,7 +190,7 @@ ssize_t WriteHeaders(int fd, string("HTTP/1.1 ") + Itoa(return_code) + " " + GetHttpResponseDescription(return_code) + EOL "Content-Type: application/octet-stream" EOL - "Connection: close" EOL); + "Connection: close" EOL); if (ret < 0) return -1; written += ret; |