diff options
author | Alfonso De Gregorio <adg@crypto.lo.gy> | 2011-08-28 02:40:28 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-08-28 14:00:04 +0200 |
commit | 6f76d144997fc98d4b0a14e241c0c2f37a6e34f1 (patch) | |
tree | 867131dc2926ab0907c4a710e672c13dca43614d | |
parent | 6254b341d6c894f5778ea3e5cc987825b7a52715 (diff) |
Fix R13 compatibility (auto imported monitor/2)
-rw-r--r-- | src/rebar_eunit.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 3bf3796..8fd2ea3 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -562,7 +562,7 @@ reconstruct_app_env_vars([]) -> ok. wait_until_dead(Pid) when is_pid(Pid) -> - Ref = monitor(process, Pid), + Ref = erlang:monitor(process, Pid), receive {'DOWN', Ref, process, _Obj, Info} -> Info |