Skip to content
Snippets Groups Projects
Commit f7093a76 authored by David Hauzar's avatar David Hauzar
Browse files

Bugfix to previous commit.

parent 34578b05
No related branches found
No related tags found
No related merge requests found
...@@ -210,7 +210,7 @@ let get_location_of_vc task = ...@@ -210,7 +210,7 @@ let get_location_of_vc task =
even on windows that's not allowed. *) even on windows that's not allowed. *)
let split = Strings.rev_split ':' loc_str in let split = Strings.rev_split ':' loc_str in
let loc = match split with let loc = match split with
| col2 :: col1 :: line :: (_ :: _) as rest -> | col2 :: col1 :: line :: ((_ :: _) as rest) ->
let line = int_of_string line in let line = int_of_string line in
let col1 = int_of_string col1 in let col1 = int_of_string col1 in
let col2 = int_of_string col2 in let col2 = int_of_string col2 in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment