diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-26 17:18:16 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-26 17:18:16 +0200 |
commit | 75492244a377c8d5d61459a162d73d60dd32759e (patch) | |
tree | c1d86b502143a97a7fde36db303bdab4a62ae2dd /src/ft_p_lcom.c | |
parent | Todo update (diff) | |
download | 42-minishell-75492244a377c8d5d61459a162d73d60dd32759e.tar.gz 42-minishell-75492244a377c8d5d61459a162d73d60dd32759e.tar.bz2 42-minishell-75492244a377c8d5d61459a162d73d60dd32759e.tar.xz 42-minishell-75492244a377c8d5d61459a162d73d60dd32759e.tar.zst 42-minishell-75492244a377c8d5d61459a162d73d60dd32759e.zip |
Tryna subst vars
Diffstat (limited to 'src/ft_p_lcom.c')
-rw-r--r-- | src/ft_p_lcom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ft_p_lcom.c b/src/ft_p_lcom.c index a08e8c2..9a7a1b8 100644 --- a/src/ft_p_lcom.c +++ b/src/ft_p_lcom.c @@ -134,7 +134,7 @@ int8_t return (-1); while (i <= count) { - if (!(link = ft_lcom_new(words[i]))) + if (!(link = ft_lcom_new(words[i], msh))) { return (-1); } |