aboutsummaryrefslogtreecommitdiff
path: root/src/tokenizer.c
diff options
context:
space:
mode:
authorChristopher Uhlig2025-01-13 11:06:54 +0100
committerChristopher Uhlig2025-01-13 11:06:54 +0100
commit78dc50a2bce3c6e31405437189e2990d8fc720ac (patch)
treed61d9f0d279e191c1bfb34929908f412cf58c02d /src/tokenizer.c
parentae5512ea0d6d8be833ca3a9b39f93239109f45b4 (diff)
downloadminishell-78dc50a2bce3c6e31405437189e2990d8fc720ac.tar.gz
minishell-78dc50a2bce3c6e31405437189e2990d8fc720ac.zip
here
Diffstat (limited to 'src/tokenizer.c')
-rw-r--r--src/tokenizer.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tokenizer.c b/src/tokenizer.c
index ab8a6ac..26edd2e 100644
--- a/src/tokenizer.c
+++ b/src/tokenizer.c
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/28 20:55:50 by chuhlig #+# #+# */
-/* Updated: 2024/08/29 15:26:55 by dkaiser ### ########.fr */
+/* Updated: 2025/01/11 15:22:07 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -111,6 +111,4 @@ void tokenizer(char *s, t_token **token_list, char quote_check)
pos = i + 1;
}
}
- while ((*token_list)->previous)
- *token_list = (*token_list)->previous;
}