From 98e8d2445213432c65ae48cfa76c863aae1139e7 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Wed, 3 Oct 2018 20:38:03 -0700 Subject: Update codebase to remove clang warnings (and a couple of legit errors it found) --- src/ics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ics.c') diff --git a/src/ics.c b/src/ics.c index 5a8d2cd..fba1af6 100755 --- a/src/ics.c +++ b/src/ics.c @@ -257,7 +257,7 @@ Return value: // // Handle double jumps. // - if (abs(RANK(cTo) - RANK(cFrom)) > 1) + if (RANK(cTo) - RANK(cFrom) > 1) { mv.bvFlags = MOVE_FLAG_SPECIAL; } -- cgit v1.3