From 84a12447dbdda10add54f714a35cab646bcb22b6 Mon Sep 17 00:00:00 2001 From: Berend de Boer Date: Mon, 19 Mar 2012 12:12:48 +1300 Subject: [PATCH] Avoid another indirection. --- library/server/ewsgi/src/implementation/wgi_response_stream.e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/server/ewsgi/src/implementation/wgi_response_stream.e b/library/server/ewsgi/src/implementation/wgi_response_stream.e index 087f8c0a..f75861b0 100644 --- a/library/server/ewsgi/src/implementation/wgi_response_stream.e +++ b/library/server/ewsgi/src/implementation/wgi_response_stream.e @@ -109,7 +109,7 @@ feature -- Output operation put_string (s: READABLE_STRING_8) -- Send the string `s' do - write (s) + output.put_string (s) end put_substring (s: READABLE_STRING_8; start_index, end_index: INTEGER)