summaryrefslogtreecommitdiff
path: root/csol.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2018-12-20 10:13:00 +0000
committerIan C <ianc@noddybox.co.uk>2018-12-20 10:13:00 +0000
commit4cc6d2dad430552a7df8a71bf541742539993fae (patch)
treeb80734e570b925f7fb39e923deec1df131daa05e /csol.c
parent3671091be220ebed449be036f0b94041155ef476 (diff)
Fixed warning and added README.
Diffstat (limited to 'csol.c')
-rw-r--r--csol.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/csol.c b/csol.c
index ea3d2ff..1444616 100644
--- a/csol.c
+++ b/csol.c
@@ -381,6 +381,9 @@ static int CanCardSitOnTop(Card card, Card on)
case Diamond:
ret = (on.suit == Spade || on.suit == Club);
break;
+
+ case NoSuit:
+ break;
}
}
}