Skip to content

Commit 8def3fa

Browse files
committed
Apply ocamlformat
1 parent 52ff65a commit 8def3fa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/lzo.ml

+2-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,8 @@ let fiber : (unit, [> error ]) t =
390390
transmit ~len:4 State._0 >>= fun () -> fiber
391391
| '\022' .. '\255' as chr ->
392392
let len = Char.code chr - 17 in
393-
junk byte >>= fun () -> transmit ~len State._0 >>= fun () -> fiber
393+
junk byte >>= fun () ->
394+
transmit ~len State._0 >>= fun () -> fiber
394395

395396
let uncompress input output : (bigstring, [> error ]) result =
396397
let v = {i= input; i_pos= 0; o= output; o_pos= 0; state= State._0} in

test/test_lzo.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ let () =
607607
( "lzo"
608608
, [
609609
test_lzo_0 (); test_lzo_1 (); test_lzo_2 (); test_lzo_3 ()
610-
; test_lzo_4 (); test_lzo_5 (); test_lzo_6 () ; test_lzo_7 ()
610+
; test_lzo_4 (); test_lzo_5 (); test_lzo_6 (); test_lzo_7 ()
611611
; test_lzo_8 (); test_lzo_9 (); test_lzo_10 (); test_lzo_11 ()
612612
; test_lzo_12 (); test_lzo_13 (); test_lzo_14 (); test_lzo_15 ()
613613
] ); "minilzo", [test_minilzo ()]

0 commit comments

Comments
 (0)