From 47a55bc2f6118072bd559109a6852c3e7c20793b Mon Sep 17 00:00:00 2001 From: Guillaume Date: Thu, 12 Jan 2023 18:11:29 +0100 Subject: [PATCH] =?UTF-8?q?correc=20petit=20bug=20(manque=20=C3=A9toile=20?= =?UTF-8?q?sur=20malloc)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/sae.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sae.c b/source/sae.c index 4f89073..a4d21df 100644 --- a/source/sae.c +++ b/source/sae.c @@ -571,7 +571,7 @@ ListeDeptV2 configurationDeptV2( ListeDept ldept ) exit(1); } - MaillonDeptV2 * mV2 = ( MaillonDeptV2 ) malloc ( sizeof( MaillonDeptV2 )); + MaillonDeptV2 * mV2 = ( MaillonDeptV2 * ) malloc ( sizeof( MaillonDeptV2 )); { printf("\n --> Erreur d'allocation memoire...\n"); exit(1);