diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-18 16:11:25 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-18 16:11:25 +0200 |
commit | 1d106c9748720b35197e4ee1a67759eac7e0cbdb (patch) | |
tree | 0df9a3a884f295a8e650cceb3bc8449ea3283d4d | |
parent | BSD style fix (diff) | |
download | 42-minishell-1d106c9748720b35197e4ee1a67759eac7e0cbdb.tar.gz 42-minishell-1d106c9748720b35197e4ee1a67759eac7e0cbdb.tar.bz2 42-minishell-1d106c9748720b35197e4ee1a67759eac7e0cbdb.tar.xz 42-minishell-1d106c9748720b35197e4ee1a67759eac7e0cbdb.tar.zst 42-minishell-1d106c9748720b35197e4ee1a67759eac7e0cbdb.zip |
Format change
-rw-r--r-- | src/p_lblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p_lblock.c b/src/p_lblock.c index f891862..064b8ff 100644 --- a/src/p_lblock.c +++ b/src/p_lblock.c @@ -73,7 +73,7 @@ static int8_t p_loop(char *words[], t_msh *msh) int8_t p_line_block(const char line[], t_msh *msh) { - char **words; + char **words; if ((words = p_split_line((char*)line)) == NULL) return (-1); |