From d1404d345c3ce18163fbde53ac90dcc2af5ca6aa Mon Sep 17 00:00:00 2001 From: Bart House Date: Sun, 18 Oct 2020 16:13:52 -0700 Subject: [PATCH] Fix compiler warning. --- src/sp_lev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sp_lev.c b/src/sp_lev.c index c469d9747..f3e2fe1a3 100755 --- a/src/sp_lev.c +++ b/src/sp_lev.c @@ -4393,7 +4393,7 @@ int lit; break; case 0: case 1: - if (levl[x][y].lit == lit) + if (levl[x][y].lit == (unsigned int) lit) selection_setpoint(x, y, ret, 1); break; }