Skip to content

Commit afa354f

Browse files
authored
Merge pull request #487 from hannesm/fixes
minor fixes in TCP code
2 parents 76033e8 + fd365ce commit afa354f

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/tcp/ack.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ end
3737
module Immediate : M = struct
3838

3939
type t = {
40-
mutable send_ack: Sequence.t Lwt_mvar.t;
40+
send_ack: Sequence.t Lwt_mvar.t;
4141
mutable pushpending: bool;
4242
}
4343

src/tcp/segment.ml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1515
*)
1616

17-
[@@@ocaml.warning "-3"]
18-
1917
open Lwt.Infix
2018

2119
let src = Logs.Src.create "tcp.segment" ~doc:"Mirage TCP Segment module"

src/tcp/user_buffer.ml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*)
1717

18-
[@@@ocaml.warning "-3"]
19-
2018
open Lwt.Infix
2119

2220
let lwt_sequence_add_l s seq =

0 commit comments

Comments
 (0)