summaryrefslogtreecommitdiffstats
path: root/src/e_line.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/e_line.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/e_line.c b/src/e_line.c
index de1eae2..c0edb60 100644
--- a/src/e_line.c
+++ b/src/e_line.c
@@ -22,8 +22,7 @@
#include "s_struct.h"
#include "u_utils.h"
-void
- e_line(t_msh *msh)
+void e_line(t_msh *msh)
{
uint8_t bu_id;
@@ -31,9 +30,8 @@ void
e_pipes(msh);
else if (msh->com != NULL)
{
- if (msh->com->bin != NULL &&
- (bu_id = u_get_builtin_id(msh->com->bin))
- < B_BUILTINS_COUNT)
+ if (msh->com->bin != NULL
+ && (bu_id = u_get_builtin_id(msh->com->bin)) < B_BUILTINS_COUNT)
e_builtin(msh->com, bu_id, msh);
else if (msh->com->bin != NULL)
e_extern(msh->com, msh);