Skip to content

Commit c4ad411

Browse files
committed
CP-18271 fix indentation
Signed-off-by: Christian Lindig <[email protected]>
1 parent 17748b1 commit c4ad411

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

ocaml/rrdreader.ml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ exception Error of string
2929
let error fmt = Printf.kprintf (fun msg -> raise (Error msg)) fmt
3030

3131
let finally opn cls =
32-
let res = try opn () with exn -> cls (); raise exn
33-
in
34-
cls ();
35-
res
32+
let res = try opn () with exn -> cls (); raise exn in
33+
cls ();
34+
res
3635

3736
let string_of_data_source owner ds =
3837
let owner_string = match owner with

0 commit comments

Comments
 (0)