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

Unified Diff: net/tools/flip_server/acceptor_thread.cc

Issue 9705026: Fix a -Wstring-plus-int warning in (linux-only) flip_server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/acceptor_thread.cc
diff --git a/net/tools/flip_server/acceptor_thread.cc b/net/tools/flip_server/acceptor_thread.cc
index 89aaa755fb33fe0696305f6abd500fe029bf29b7..63b63a53faa91384c530c1fb07f9cbc544aea391 100644
--- a/net/tools/flip_server/acceptor_thread.cc
+++ b/net/tools/flip_server/acceptor_thread.cc
@@ -89,7 +89,7 @@ void SMAcceptorThread::HandleConnection(int server_fd,
reinterpret_cast<char*>(&on), sizeof(on));
if (rc < 0) {
close(server_fd);
- LOG(ERROR) << "setsockopt() failed fd=" + server_fd;
+ LOG(ERROR) << "setsockopt() failed fd=" << server_fd;
return;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698