From 622a237fa6004f3ffaf376728f761cd717ea47d5 Mon Sep 17 00:00:00 2001 From: girst Date: Sat, 5 Jan 2019 23:01:18 +0100 Subject: [PATCH] squash another bug what did that semicolon here!? note that WASTE is not -1 but 0, as it is used as the second index into action[][] --- sol.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sol.h b/sol.h index 9da6b49..312ff11 100644 --- a/sol.h +++ b/sol.h @@ -103,7 +103,7 @@ enum field_places { TAB_9, TAB_10, STOCK, -#define WASTE 0; /* need it for get_cmd(), but don't count it in NUM_PLACES */ +#define WASTE 0 /* need it for get_cmd()/action[][] table, but don't count it in NUM_PLACES */ #define TABLEU -2 /* for undo .t when .f==STACK */ #define FOUNDATION -3 /* for undo .t when stack complete */ #elif defined KLONDIKE -- 2.39.3