You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by dr...@apache.org on 2010/10/18 19:25:13 UTC

svn commit: r1023912 - /incubator/thrift/trunk/lib/cpp/src/protocol/TDebugProtocol.cpp

Author: dreiss
Date: Mon Oct 18 17:25:13 2010
New Revision: 1023912

URL: http://svn.apache.org/viewvc?rev=1023912&view=rev
Log:
cpp: Add a little extra whitespace to TDebugProtocol.cpp

Modified:
    incubator/thrift/trunk/lib/cpp/src/protocol/TDebugProtocol.cpp

Modified: incubator/thrift/trunk/lib/cpp/src/protocol/TDebugProtocol.cpp
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/cpp/src/protocol/TDebugProtocol.cpp?rev=1023912&r1=1023911&r2=1023912&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/cpp/src/protocol/TDebugProtocol.cpp (original)
+++ incubator/thrift/trunk/lib/cpp/src/protocol/TDebugProtocol.cpp Mon Oct 18 17:25:13 2010
@@ -150,9 +150,9 @@ uint32_t TDebugProtocol::writeMessageBeg
                                            const int32_t seqid) {
   string mtype;
   switch (messageType) {
-    case T_CALL      : mtype = "call"  ; break;
-    case T_REPLY     : mtype = "reply" ; break;
-    case T_EXCEPTION : mtype = "exn"   ; break;
+    case T_CALL      : mtype = "call"   ; break;
+    case T_REPLY     : mtype = "reply"  ; break;
+    case T_EXCEPTION : mtype = "exn"    ; break;
   }
 
   uint32_t size = writeIndented("(" + mtype + ") " + name + "(");