aboutsummaryrefslogtreecommitdiff
path: root/src/parser.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/parser.c
parente745796ffea1580b7d9263305ee57233536b3365 (diff)
downloadminishell-d6b4b8116084f7aec25c101a82fc457ac9989033.tar.gz
minishell-d6b4b8116084f7aec25c101a82fc457ac9989033.zip
Test test test
Diffstat (limited to 'src/parser.c')
-rw-r--r--src/parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.c b/src/parser.c
index e7b53c2..2d748c9 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/29 15:53:29 by dkaiser #+# #+# */
-/* Updated: 2025/01/21 21:27:15 by chuhlig ### ########.fr */
+/* Updated: 2025/01/22 17:13:50 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -70,7 +70,7 @@ t_token *split_at_first(t_token **tokens, int type)
*tokens = split->next;
if (result == split)
result = NULL;
- free_token(split);
+ free_token2(split);
split = NULL;
return (result);
}