aboutsummaryrefslogtreecommitdiff
path: root/biology/iolib/files/patch-io__lib_tokenise__name3.c
blob: 7b52aefe8718ffe7924de1cf65dcc838ebee003c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- io_lib/tokenise_name3.c.orig	2018-10-18 16:21:37 UTC
+++ io_lib/tokenise_name3.c
@@ -457,13 +457,13 @@ static int encode_token_diff(name_context *ctx, uint32
 
 //-----------------------------------------------------------------------------
 // Trie implementation for tracking common name prefixes.
-typedef struct trie {
+struct trie {
     char c;
     int count;
     //struct trie *next[128];
     struct trie *next, *sibling;
     int n; // Nth line
-} trie_t;
+};
 
 //static trie_t *t_head = NULL;