Fix bug in 'unwatch()' function

This commit is contained in:
Ulf Wiger
2025-10-24 07:14:16 +02:00
parent 1f6066705c
commit 02eaf1ee47
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ watch(Interval, N) ->
gen_server:call(?MODULE, {watch, self(), Interval, N}).
unwatch() ->
gen_server:cast({unwatch, self()}).
gen_server:cast(?MODULE, {unwatch, self()}).
ping() ->
gen_server:cast(?MODULE, {ping, self()}).