Fix indentation
[dups.git] / dups.ml
diff --git a/dups.ml b/dups.ml
index 46e8b91..e88d888 100644 (file)
--- a/dups.ml
+++ b/dups.ml
@@ -112,12 +112,14 @@ let main input =
 
 let () =
   let input = ref Paths_on_stdin in
-  Arg.parse [] (fun path ->
-    if Sys.file_exists path then
-      input := Root_path path
-    else begin
-      eprintf "File does not exist: %S\n%!" path;
-      exit 1
-    end
-  ) "";
+  Arg.parse
+    []
+    (function
+    | path when Sys.file_exists path ->
+        input := Root_path path
+    | path ->
+        eprintf "File does not exist: %S\n%!" path;
+        exit 1
+    )
+    "";
   main !input
This page took 0.017779 seconds and 4 git commands to generate.