ref: 28c519295f3cf6768f46f715c9a38e1739b8e966
parent: d05b90f300b79b79eb8462aed9f649d76e432b78
author: aiju <devnull@localhost>
date: Wed May 2 18:47:04 EDT 2018
games/mines -g: elements taken from list should be -2, not -1
--- a/sys/src/games/mines/ghost.c
+++ b/sys/src/games/mines/ghost.c
@@ -255,7 +255,7 @@
next: ;
}
qi = q->next;
- q->next = -1;
+ q->next = -2;
}
if(zero != 0){
for(i = 0, j = 0; i < *nclp; i++)