From 651d755e562dc8b5bc12e42b0b808ff1046f5d43 Mon Sep 17 00:00:00 2001
From: chriseth <c@ethdev.com>
Date: Fri, 5 Jun 2015 17:38:06 +0200
Subject: [PATCH] Style.

---
 ExpressionCompiler.cpp | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp
index 11de73082..bac967d84 100644
--- a/ExpressionCompiler.cpp
+++ b/ExpressionCompiler.cpp
@@ -1117,10 +1117,11 @@ void ExpressionCompiler::appendExternalFunctionCall(
 	else
 		m_context << eth::Instruction::CALL;
 
-	unsigned remainsSize = 1 + // contract address
-			_functionType.valueSet() +
-			_functionType.gasSet() +
-			!_functionType.isBareCall();
+	unsigned remainsSize =
+		1 + // contract address
+		_functionType.valueSet() +
+		_functionType.gasSet() +
+		!_functionType.isBareCall();
 
 	if (returnSuccessCondition)
 		m_context << eth::swapInstruction(remainsSize);