Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2655)

Unified Diff: base/sync_socket_posix.cc

Issue 552004: Style cleanup in preparation for auto-linting base/. (Closed)
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/string_piece.h ('k') | base/sys_string_conversions_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/sync_socket_posix.cc
diff --git a/base/sync_socket_posix.cc b/base/sync_socket_posix.cc
index 194c0bc67c128c291a03831b429443b9f80a49e4..d4a302e57b8f27068941af0d429df3d3c0eeacd6 100644
--- a/base/sync_socket_posix.cc
+++ b/base/sync_socket_posix.cc
@@ -63,7 +63,7 @@ bool SyncSocket::CreatePair(SyncSocket* pair[2]) {
pair[1] = tmp_sockets[1];
return true;
-cleanup:
+ cleanup:
if (handles[0] != kInvalidHandle)
(void) close(handles[0]);
if (handles[1] != kInvalidHandle)
« no previous file with comments | « base/string_piece.h ('k') | base/sys_string_conversions_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698