diff options
author | 2021-02-25 17:27:26 +0200 | |
---|---|---|
committer | 2021-02-25 17:27:26 +0200 | |
commit | 2daea54cac437e34b2c5223cfc33387d3a7aee28 (patch) | |
tree | bee68d51747994bede9edd7d8f657aecdb387c1e /src/main.c | |
parent | 361c1a693c50e42df849f5d68642552d4a99aa4a (diff) | |
download | algos-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |