aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornass1pro <nass1pro@gmail.com>2020-06-14 09:51:22 +0200
committernass1pro <nass1pro@gmail.com>2020-06-14 09:51:22 +0200
commitab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d (patch)
tree6c5f54bb627629a745096dc3895c5f4084a9ee68 /include
parent1d455c5b8ba3ecd7fa0b0a5a6718bc6cd7fbd8d9 (diff)
downloadminishell-ab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d.tar.gz
minishell-ab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d.tar.bz2
minishell-ab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d.zip
Change t_ret in ast.h
Diffstat (limited to 'include')
-rw-r--r--include/ast.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ast.h b/include/ast.h
index 8127930..2f3a11d 100644
--- a/include/ast.h
+++ b/include/ast.h
@@ -58,7 +58,7 @@ typedef struct s_line
{
struct s_ast *left;
struct s_ast *right;
- t_sep sep;
+ e_token_tag sep;
} t_line;
/*
@@ -109,8 +109,8 @@ typedef struct s_ast
typedef struct s_ret
{
- t_bool failed;
- t_ast *as;
+ t_token *unexpected;
+ t_ast *ast;
t_ftlst *rest;
} t_ret;