diff options
Diffstat (limited to '')
-rw-r--r-- | src/p_lblock_next.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p_lblock_next.c b/src/p_lblock_next.c index 485d4ee..bfdca3d 100644 --- a/src/p_lblock_next.c +++ b/src/p_lblock_next.c @@ -75,7 +75,7 @@ static void p_add_to_env_fork(int64_t i, char *words[], t_msh *msh) int64_t j; j = 0; - while(j < i) + while (j < i) { ft_strlcpy(msh->env_fork_tmp[j], words[j], ft_strlen(words[j]) + 1); j++; |