Skip to content

Commit

Permalink
applying norminette
Browse files Browse the repository at this point in the history
  • Loading branch information
biralavor committed Jun 28, 2024
1 parent f6e8da1 commit e9a4719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions program_to_test/src/ft_argv_validation.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: umeneses <umeneses@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 */
/* */
/* ************************************************************************** */

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit e9a4719

Please sign in to comment.