You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jf...@apache.org on 2011/06/01 22:34:27 UTC

svn commit: r1130293 - /thrift/trunk/lib/cpp/src/protocol/TProtocol.h

Author: jfarrell
Date: Wed Jun  1 20:34:26 2011
New Revision: 1130293

URL: http://svn.apache.org/viewvc?rev=1130293&view=rev
Log:
THRIFT-1192: Typo: TProtocol.h tests for HAVE_SYS_PARAM_H_
Client: cpp
Patch: Eric Rannaud

Fixes the typo in the check for HAVE_SYS_PARAM_H


Modified:
    thrift/trunk/lib/cpp/src/protocol/TProtocol.h

Modified: thrift/trunk/lib/cpp/src/protocol/TProtocol.h
URL: http://svn.apache.org/viewvc/thrift/trunk/lib/cpp/src/protocol/TProtocol.h?rev=1130293&r1=1130292&r2=1130293&view=diff
==============================================================================
--- thrift/trunk/lib/cpp/src/protocol/TProtocol.h (original)
+++ thrift/trunk/lib/cpp/src/protocol/TProtocol.h Wed Jun  1 20:34:26 2011
@@ -77,7 +77,7 @@ namespace apache { namespace thrift { na
 
 using apache::thrift::transport::TTransport;
 
-#ifdef HAVE_SYS_PARAM_H_
+#ifdef HAVE_SYS_PARAM_H
 #include <sys/param.h>
 #endif