From e36c9b137b69122c483c303ddfa956d580bb6445 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Tue, 18 Feb 2014 20:15:57 +0900 Subject: [PATCH] Removing debug output. --- lib/chibi/net/http.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/chibi/net/http.scm b/lib/chibi/net/http.scm index 61d583d7..a84b5f87 100644 --- a/lib/chibi/net/http.scm +++ b/lib/chibi/net/http.scm @@ -55,7 +55,6 @@ (define (read-chunk in) (let* ((line (read-line in)) (n (and (string? line) (string->number line 16)))) - (display "read-chunk ") (write line) (newline) (cond ((not (and (integer? n) (<= 0 n http-chunked-size-limit))) (error "invalid chunked size line" line))