summaryrefslogtreecommitdiff
path: root/src/preproc.c
diff options
context:
space:
mode:
authorÁkos Kőrösi <korakos99@gmail.com>2026-05-23 23:21:54 +0200
committerÁkos Kőrösi <korakos99@gmail.com>2026-05-23 23:21:54 +0200
commitd7d48bb2195df25f5caf3fe2232eab83e0edddc2 (patch)
treecbdf18d0b324c99df152450e08762d328ee5422f /src/preproc.c
parent732910ad461ae94a876d9e661922717553181b07 (diff)
simplify function calls
Diffstat (limited to 'src/preproc.c')
-rw-r--r--src/preproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preproc.c b/src/preproc.c
index 9c26c5f..8d5525e 100644
--- a/src/preproc.c
+++ b/src/preproc.c
@@ -46,7 +46,7 @@ char* get_cmdsub_output(TokenVec sub_region, ShellState* shstate) {
PipelineTree sub_tree = process_ast(sub_region, shstate);
// TODO: tree cleanup
- execute_pipeline_tree(*sub_tree.root, shstate, STDIN_FILENO, pipe_fds[1]);
+ //execute_pipeline_tree(*sub_tree.root, shstate, STDIN_FILENO, pipe_fds[1]);
String output_buf = make_String(256);