aboutsummaryrefslogtreecommitdiff
path: root/src/repl.c
diff options
context:
space:
mode:
authorDominik Kaiser2024-09-13 16:27:13 +0200
committerDominik Kaiser2024-09-13 16:27:13 +0200
commit60adeb49de9458b4e2af0abd1c7b256da0950bc3 (patch)
treea5309ad34d54de1f78821125c66d1f76496c0803 /src/repl.c
parentf24b063f2135f495193dac4847b9f2489d1d954a (diff)
downloadminishell-60adeb49de9458b4e2af0abd1c7b256da0950bc3.tar.gz
minishell-60adeb49de9458b4e2af0abd1c7b256da0950bc3.zip
Fix norme issues for env.h and repl.c
TODO: Fix for tokenizer.c as well. This was probably already solved in another branch though.
Diffstat (limited to 'src/repl.c')
-rw-r--r--src/repl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/repl.c b/src/repl.c
index 02fb879..d590fec 100644
--- a/src/repl.c
+++ b/src/repl.c
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/24 16:07:04 by dkaiser #+# #+# */
-/* Updated: 2024/08/29 15:37:27 by dkaiser ### ########.fr */
+/* Updated: 2024/09/13 16:26:35 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -17,7 +17,7 @@ void repl(const char *prompt)
{
char *input;
t_token *token_list;
- t_list *lines;
+ t_list *lines;
while (1)
{