Skip to content

Commit

Permalink
fixed norminette error
Browse files Browse the repository at this point in the history
  • Loading branch information
izzypt committed Aug 12, 2023
1 parent 4832888 commit 5ca6f80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/export_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
/* ::: :::::::: */
/* export_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: esali <esali@student.42.fr> +#+ +:+ +#+ */
/* By: simao <simao@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/08/01 19:44:27 by esali #+# #+# */
/* Updated: 2023/08/12 20:35:53 by esali ### ########.fr */
/* Updated: 2023/08/12 22:08:36 by simao ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down Expand Up @@ -81,7 +81,7 @@ char **split_key_value(char *var)
ret[0] = ft_strdup(split[0]);
ret[1] = ft_strdup(split[1]);
i = 2;
while(split[i])
while (split[i])
{
ret[1] = ft_join_str(ret[1], "=");
ret[1] = ft_join_str(ret[1], split[i]);
Expand Down

0 comments on commit 5ca6f80

Please sign in to comment.