diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-02 20:12:44 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-02 20:12:44 +0200 |
commit | 9f2061d8fc38cdef957795ca67dc39f1d968e672 (patch) | |
tree | c0ee9105fbd879ccc3794c307406973cb37562ba /src/p_lblock.c | |
parent | Normed p_lblock (diff) | |
download | 42-minishell-9f2061d8fc38cdef957795ca67dc39f1d968e672.tar.gz 42-minishell-9f2061d8fc38cdef957795ca67dc39f1d968e672.tar.bz2 42-minishell-9f2061d8fc38cdef957795ca67dc39f1d968e672.tar.xz 42-minishell-9f2061d8fc38cdef957795ca67dc39f1d968e672.tar.zst 42-minishell-9f2061d8fc38cdef957795ca67dc39f1d968e672.zip |
Renormed p_lblock
Diffstat (limited to 'src/p_lblock.c')
-rw-r--r-- | src/p_lblock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/p_lblock.c b/src/p_lblock.c index b0a5c6a..f891862 100644 --- a/src/p_lblock.c +++ b/src/p_lblock.c @@ -26,7 +26,7 @@ static uint8_t p_get_nextif(char *words[], size_t i) { - uint8_t nextif; + uint8_t nextif; nextif = 0; if (words[i][ft_strlen(words[i]) - 1] == '0') @@ -44,7 +44,7 @@ static int8_t p_loop(char *words[], t_msh *msh) t_line_block *link; size_t i; uint8_t nextif; - + i = 0; while (words[i] != NULL) { |