From 8d8fcc24c4e32b5ed3dd106c75d427efd4bca224 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 11 Mar 2017 20:25:28 +0100 Subject: [PATCH] TP5 exo4: coding style cleanups MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- TP5/exo4/liste_chainee.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1