aboutsummaryrefslogtreecommitdiff
path: root/src/repl.c
diff options
context:
space:
mode:
authorChristopher Uhlig2024-08-09 15:28:03 +0200
committerChristopher Uhlig2024-08-09 15:28:03 +0200
commit88030338953372eb0d223cf27fd5c96063ac7ee2 (patch)
treee3aa0d02b9526f476e3456ddec9baa9768896904 /src/repl.c
parent665e9eb6fe20730b2f98cbc0f6617985204accc7 (diff)
downloadminishell-88030338953372eb0d223cf27fd5c96063ac7ee2.tar.gz
minishell-88030338953372eb0d223cf27fd5c96063ac7ee2.zip
fixed norm errors that i saw
Diffstat (limited to 'src/repl.c')
-rw-r--r--src/repl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/repl.c b/src/repl.c
index e1ca7a6..1fd7be7 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/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)
{