From 26ab990a747ab675bcff32a40734dcb61468f652 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Wed, 17 Feb 2021 08:57:56 +0200 Subject: Most of sorting an array in memory is wired up. Signed-off-by: Gediminas Jakutis --- src/defs.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/defs.h') diff --git a/src/defs.h b/src/defs.h index 5f1a733..8396015 100644 --- a/src/defs.h +++ b/src/defs.h @@ -97,12 +97,11 @@ enum streamtype { }; struct stream { - struct stream *parent; + long int parentid; size_t n; int fd; enum streamtype type; char *name; - size_t stride; size_t index; struct entry_l *pnode; /* "previous" node */ struct entry_l *cnode; /* "current" node */ -- cgit v1.2.3