From: Jérôme Benoit <jerome.benoit@piment-noir.org>
Date: Sat, 11 Mar 2017 19:25:28 +0000 (+0100)
Subject: TP5 exo4: coding style cleanups
X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=8d8fcc24c4e32b5ed3dd106c75d427efd4bca224;p=Algorithmic_C.git

TP5 exo4: coding style cleanups

Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
---

diff --git a/TP5/exo4/liste_chainee.c b/TP5/exo4/liste_chainee.c
index c8f1463..a858939 100644
--- a/TP5/exo4/liste_chainee.c
+++ b/TP5/exo4/liste_chainee.c
@@ -12,7 +12,7 @@ typedef struct cellule {
 	struct cellule *suivant;
 } Cellule, *Liste;
 
-Cellule *creer_maillon(element e, Cellule * suivant)
+Cellule *creer_maillon(element e, Cellule *suivant)
 {
 	Cellule *pnouveau = malloc(sizeof(Cellule));
 	pnouveau->valeur = e;