Code style: Put function return type on a line by itself.
diff --git a/ndn-cpp/face.cpp b/ndn-cpp/face.cpp
index 5780875..342a585 100644
--- a/ndn-cpp/face.cpp
+++ b/ndn-cpp/face.cpp
@@ -10,7 +10,8 @@
 
 namespace ndn {
   
-void Face::expressInterest(const Name& name, const Interest *interestTemplate, const OnData& onData, const OnTimeout& onTimeout)
+void 
+Face::expressInterest(const Name& name, const Interest *interestTemplate, const OnData& onData, const OnTimeout& onTimeout)
 {
   if (interestTemplate)
     node_.expressInterest(Interest
@@ -22,7 +23,8 @@
     node_.expressInterest(Interest(name, 4000.0), onData, onTimeout);  
 }
 
-void Face::shutdown()
+void 
+Face::shutdown()
 {
   node_.shutdown();
 }