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};