From 7f3ece8d7514e8409d72d146f31ebad665112053 Mon Sep 17 00:00:00 2001 From: Pedro Tavares Date: Wed, 31 Jan 2018 17:58:37 +0000 Subject: [PATCH] Fix `next_header_source` alignment --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 410b78882..1648d0253 100644 --- a/src/client.rs +++ b/src/client.rs @@ -43,7 +43,7 @@ pub struct ClientConnection { sink: SequentialWriterBuilder>, // Reader to read the next header from - next_header_source: SequentialReader>, + next_header_source: SequentialReader>, // set to true if we know that the previous request is the last one no_more_requests: bool,