From 0f81c6a873640359583d44a791e706de2d44ea1e Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Mon, 10 Sep 2018 17:42:18 -0400 Subject: [PATCH] Remove superfluous string concatenation --- src/ocaml/lib/khatus_cache.ml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ocaml/lib/khatus_cache.ml b/src/ocaml/lib/khatus_cache.ml index 6a70e23..64b407d 100644 --- a/src/ocaml/lib/khatus_cache.ml +++ b/src/ocaml/lib/khatus_cache.ml @@ -36,9 +36,8 @@ let dump_to_channel {values; mtimes} ~node ~modul ~oc = } ) in - output_string - oc - (msg ^ "\n") + output_string oc msg; + output_string oc "\n" ) let (/) = Filename.concat -- 2.20.1