From 9dcfc6ed8fad31a5dfcf87e0fd88617f5c21b199 Mon Sep 17 00:00:00 2001 From: Marko Simovic Date: Wed, 26 Mar 2014 01:21:58 -0400 Subject: [PATCH] Minor styling changes --- eth/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/main.cpp b/eth/main.cpp index dce30112c..ea57f0f89 100644 --- a/eth/main.cpp +++ b/eth/main.cpp @@ -272,7 +272,7 @@ int main(int argc, char** argv) } else if (cmd == "peers") { - for(auto it : c.peers()) + for (auto it: c.peers()) cout << it.host << ":" << it.port << ", " << it.clientVersion << ", " << std::chrono::duration_cast(it.lastPing).count() << "ms" << endl;