aboutsummaryrefslogtreecommitdiff
path: root/src/praise_the_norme.c
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-22 17:34:07 +0100
committerDominik Kaiser2025-01-22 17:34:07 +0100
commitd6b4b8116084f7aec25c101a82fc457ac9989033 (patch)
tree5d3d64f0a97d91da642086976d793b6dc47b94a9 /src/praise_the_norme.c
parente745796ffea1580b7d9263305ee57233536b3365 (diff)
downloadminishell-d6b4b8116084f7aec25c101a82fc457ac9989033.tar.gz
minishell-d6b4b8116084f7aec25c101a82fc457ac9989033.zip
Test test test
Diffstat (limited to 'src/praise_the_norme.c')
-rw-r--r--src/praise_the_norme.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/praise_the_norme.c b/src/praise_the_norme.c
index a22843b..6af28c3 100644
--- a/src/praise_the_norme.c
+++ b/src/praise_the_norme.c
@@ -6,7 +6,7 @@
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/20 18:35:41 by dkaiser #+# #+# */
-/* Updated: 2025/01/20 18:39:31 by dkaiser ### ########.fr */
+/* Updated: 2025/01/22 17:30:02 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -17,13 +17,13 @@ void i_love_the_norme(t_token **cur, t_token **tokens)
t_token *next_token;
next_token = (*cur)->next;
- free_token_and_connect(*cur);
+ free_token_and_connect2(*cur);
if (next_token)
{
if (next_token->previous == NULL)
*tokens = next_token->next;
*cur = next_token->next;
- free_token_and_connect(next_token);
+ free_token_and_connect2(next_token);
}
else
*cur = NULL;