summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorGravatar Gediminas Jakutis <gediminas@varciai.lt> 2021-02-25 17:27:26 +0200
committerGravatar Gediminas Jakutis <gediminas@varciai.lt> 2021-02-25 17:27:26 +0200
commit2daea54cac437e34b2c5223cfc33387d3a7aee28 (patch)
treebee68d51747994bede9edd7d8f657aecdb387c1e /src/main.c
parent361c1a693c50e42df849f5d68642552d4a99aa4a (diff)
downloadalgos-ld1-2daea54cac437e34b2c5223cfc33387d3a7aee28.tar.gz
algos-ld1-2daea54cac437e34b2c5223cfc33387d3a7aee28.tar.bz2
algos-ld1-2daea54cac437e34b2c5223cfc33387d3a7aee28.zip
get rid of pnode, t'was unused.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index ccdbfc2..9d66594 100644
--- a/src/main.c
+++ b/src/main.c
@@ -26,7 +26,7 @@ static int stub_split(struct stream * const in, struct stream * const a, struct
static const struct stream stream_blank = {
.n = 0, .type = stream_invalid, .fd = -1, .settings = &settings,
- .name = NULL, .index = 0, .pnode = NULL, .cnode = NULL, .cache = NULL,
+ .name = NULL, .index = 0, .cnode = NULL, .cache = NULL,
.get_next_element_direct = stub_getnext,
.get_next_element_cache = stub_getnext,
.place_next_element_direct = stub_put,