diff options
| author | Christopher Uhlig | 2024-08-09 15:28:03 +0200 |
|---|---|---|
| committer | Christopher Uhlig | 2024-08-09 15:28:03 +0200 |
| commit | 88030338953372eb0d223cf27fd5c96063ac7ee2 (patch) | |
| tree | e3aa0d02b9526f476e3456ddec9baa9768896904 /src/repl.c | |
| parent | 665e9eb6fe20730b2f98cbc0f6617985204accc7 (diff) | |
| download | minishell-88030338953372eb0d223cf27fd5c96063ac7ee2.tar.gz minishell-88030338953372eb0d223cf27fd5c96063ac7ee2.zip | |
fixed norm errors that i saw
Diffstat (limited to 'src/repl.c')
| -rw-r--r-- | src/repl.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ /* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/24 16:07:04 by dkaiser #+# #+# */ -/* Updated: 2024/08/05 20:20:02 by chuhlig ### ########.fr */ +/* Updated: 2024/08/09 15:27:11 by chuhlig ### ########.fr */ /* */ /* ************************************************************************** */ @@ -17,8 +17,8 @@ void repl(const char *prompt) { char *input; t_token *token_list; - t_token *current; - t_token *next; + t_token *current; + t_token *next; while (1) { |
