Skip to content

Commit

Permalink
Delete useless logs
Browse files Browse the repository at this point in the history
  • Loading branch information
arzelcm committed Jun 29, 2024
1 parent 269da6d commit 55f3983
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/tokenizer/token.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: arcanava <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/29 21:59:24 by arcanava #+# #+# */
/* Updated: 2024/06/29 23:06:02 by arcanava ### ########.fr */
/* Updated: 2024/06/29 23:15:26 by arcanava ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down Expand Up @@ -110,7 +110,6 @@ void split_push(char ***new_args, char *word, int *argc)
j = 0;
while (words[j])
{
ft_printf("new_args SP: %p\n", new_args);
push_arg(new_args, words[j], argc);
j++;
}
Expand All @@ -133,7 +132,6 @@ void expand_args(t_token *token, t_context *context)
{
j = 0;
word = get_word(token->args[i], &j, context, &expansion);
ft_printf("new_args: %p\n", new_args);
if (!expansion.expanded || expansion.quoted)
push_arg(&new_args, word, &token->argc);
else
Expand Down

0 comments on commit 55f3983

Please sign in to comment.