From 959156c261feb09ab04d967f69060fbd3b6467aa Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Wed, 8 Aug 2018 10:37:32 +1200 Subject: [PATCH] Fix bang parsing --- src/main/c/stream/bang.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/c/stream/bang.c b/src/main/c/stream/bang.c index bb29dcc..3ebf723 100644 --- a/src/main/c/stream/bang.c +++ b/src/main/c/stream/bang.c @@ -15,10 +15,10 @@ void hbs_bang(hbu_pipe_t pipe) break; } - hbu_pipe_skip(pipe); + hbu_pipe_accept(pipe); } - hbu_pipe_skip(pipe); + hbu_pipe_accept(pipe); } #endif // _HDR_HYPERBUILD_STREAM_BANG