From: Jérôme Benoit <jerome.benoit@piment-noir.org>
Date: Sat, 3 Jun 2017 20:40:39 +0000 (+0200)
Subject: Small indentation beautification
X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=f8be19baab695a99afd806d64aae4c92d09c33ab;p=Project_algorithmic_C.git

Small indentation beautification
---

diff --git a/lib/constants.c b/lib/constants.c
index 1006d0b..6e417cd 100644
--- a/lib/constants.c
+++ b/lib/constants.c
@@ -30,14 +30,14 @@ const unsigned int white = 2;
 const unsigned int player_one = 1; /* first player is black */
 const unsigned int player_two = 2;
 
-const unsigned int hint_allowed =   3;
+const unsigned int hint_allowed   = 3;
 const unsigned int hint_forbidden = 4;
 
-const unsigned int north =      10;
+const unsigned int north      = 10;
 const unsigned int north_east = 11;
-const unsigned int east =       12;
+const unsigned int east       = 12;
 const unsigned int south_east = 13;
-const unsigned int south =      14;
+const unsigned int south      = 14;
 const unsigned int south_west = 15;
-const unsigned int west =       16;
+const unsigned int west       = 16;
 const unsigned int north_west = 17;