Fixed compilation

This commit is contained in:
Jocelyn Fiat
2012-04-12 12:25:34 +02:00
parent 3bbf356f19
commit 1403cc5c09
4 changed files with 17 additions and 11 deletions

View File

@@ -23,8 +23,8 @@ feature {NONE} -- Initialization
execute (req: WGI_REQUEST; res: WGI_RESPONSE)
do
res.set_status_code (200)
res.put_header_lines (<<["Content-Type", "text/plain"]>>)
res.set_status_code (200, Void)
res.put_header_text ("Content-Type: text/plain%R%N")
res.put_string ("Hello World!%N")
end