aboutsummaryrefslogtreecommitdiffstats
path: root/lib/gs/contribs/othello/othello_board.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2011-09-19 09:42:28 +0200
committerBjörn-Egil Dahlberg <[email protected]>2011-09-19 09:42:28 +0200
commit2d13b9580f405541e46491743702eaaedf3f6e91 (patch)
tree41582dd49f44ee1f2ab92a207bd48e40533ba773 /lib/gs/contribs/othello/othello_board.erl
parent9d1b6de75122c940333fe86b931771cc6f2d67e2 (diff)
parent2c79dee4b4f2a0a692cdf28399fc069eca18f07a (diff)
downloadotp-2d13b9580f405541e46491743702eaaedf3f6e91.tar.gz
otp-2d13b9580f405541e46491743702eaaedf3f6e91.tar.bz2
otp-2d13b9580f405541e46491743702eaaedf3f6e91.zip
Merge branch 'egil/fix-compiler-warning/OTP-9542' into dev
* egil/fix-compiler-warning/OTP-9542: gs: Update to modern type guards in examples os_mon: Check results from fgets in cpu_sup erts: Remove compiler warning in sys.c
Diffstat (limited to 'lib/gs/contribs/othello/othello_board.erl')
-rw-r--r--lib/gs/contribs/othello/othello_board.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gs/contribs/othello/othello_board.erl b/lib/gs/contribs/othello/othello_board.erl
index 0206ba2ded..6ccb79b7e4 100644
--- a/lib/gs/contribs/othello/othello_board.erl
+++ b/lib/gs/contribs/othello/othello_board.erl
@@ -147,7 +147,7 @@ but_pressed("Help",_ButtId,_User,GamePid,_Shell,_Wids,_Op) ->
but_pressed("Newgame",_ButtId,_User,GamePid,_Shell,Wids,Options) ->
new_game(GamePid,Wids,Options);
but_pressed([],ButtId,User,GamePid,_Shell,_Wids,_Op)
- when pid(GamePid),User == player ->
+ when is_pid(GamePid),User == player ->
[C,R] = atom_to_list(ButtId),
GamePid ! {self(),position,othello_adt:pos(C-96,translate(R-48))},
GamePid;
@@ -243,7 +243,7 @@ game_msg(Msg,User,GamePid,Shell,Wids,Options) ->
end.
-new_game(GamePid,Wids,Options) when pid(GamePid) ->
+new_game(GamePid,Wids,Options) when is_pid(GamePid) ->
exit(GamePid,kill),
new_game(Wids,Options);
new_game(_,Wids,Options) ->