diff --git a/program_to_test/src/ft_argv_validation.c b/program_to_test/src/ft_argv_validation.c index e36ae47..5cae5c2 100644 --- a/program_to_test/src/ft_argv_validation.c +++ b/program_to_test/src/ft_argv_validation.c @@ -6,7 +6,7 @@ /* By: umeneses +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/03 11:43:20 by umeneses #+# #+# */ -/* Updated: 2024/06/28 12:27:49 by umeneses ### ########.fr */ +/* Updated: 2024/06/28 12:36:40 by umeneses ### ########.fr */ /* */ /* ************************************************************************** */ @@ -40,7 +40,7 @@ bool ft_argv_is_not_duplicated(char **argv) after_atoi = ft_atoi(argv[index]); future_pos = 1; while ((++future_pos <= ft_argv_size(argv)) && (future_pos != index) - && compare[future_pos] != NULL) + && compare[future_pos] != NULL) { if (ft_atoi(compare[future_pos]) == after_atoi) return (false);