aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unequal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unequal.c b/unequal.c
index b39683a..130a813 100644
--- a/unequal.c
+++ b/unequal.c
@@ -1580,10 +1580,10 @@ static char *interpret_move(const game_state *state, game_ui *ui,
self = (GRID(state, flags, ui->hx, ui->hy) & adjthan[i].f);
if (self)
- sprintf(buf, "F%d,%d,%d", ui->hx, ui->hy,
+ sprintf(buf, "F%d,%d,%u", ui->hx, ui->hy,
ADJ_TO_SPENT(adjthan[i].f));
else
- sprintf(buf, "F%d,%d,%d", nx, ny,
+ sprintf(buf, "F%d,%d,%u", nx, ny,
ADJ_TO_SPENT(adjthan[i].fo));
return dupstr(buf);