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 2008/07/22 08:57:42 UTC

svn commit: r678659 - /incubator/thrift/trunk/lib/erl/src/thrift_http_transport.erl

Author: dreiss
Date: Mon Jul 21 23:57:41 2008
New Revision: 678659

URL: http://svn.apache.org/viewvc?rev=678659&view=rev
Log:
THRIFT-94. erlang: Fix a syntax error

Modified:
    incubator/thrift/trunk/lib/erl/src/thrift_http_transport.erl

Modified: incubator/thrift/trunk/lib/erl/src/thrift_http_transport.erl
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/erl/src/thrift_http_transport.erl?rev=678659&r1=678658&r2=678659&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/erl/src/thrift_http_transport.erl (original)
+++ incubator/thrift/trunk/lib/erl/src/thrift_http_transport.erl Mon Jul 21 23:57:41 2008
@@ -146,7 +146,7 @@
                                  read_buffer = Rbuf,
                                  write_buffer = Wbuf,
                                  http_options = HttpOptions}) ->
-    case iolist_to_binary(Wbuf) of ->
+    case iolist_to_binary(Wbuf) of
         <<>> ->
             %% Don't bother flushing empty buffers.
             {ok, State};