diff options
| author | Dominik Kaiser | 2024-09-13 16:27:13 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2024-09-13 16:27:13 +0200 |
| commit | 60adeb49de9458b4e2af0abd1c7b256da0950bc3 (patch) | |
| tree | a5309ad34d54de1f78821125c66d1f76496c0803 /src/repl.c | |
| parent | f24b063f2135f495193dac4847b9f2489d1d954a (diff) | |
| download | minishell-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |
