Compare commits

..

4 Commits

Author SHA1 Message Date
be7ea694fc Update libds (again). 2018-03-24 17:15:49 -07:00
ff819aabab Update libds. 2018-03-24 16:53:49 -07:00
27db224a79 Update libds. 2018-03-17 17:23:55 -07:00
f54e6fb1ea Fix bug causing comparison between incompatible enums. 2018-02-28 13:47:39 -08:00
2 changed files with 2 additions and 2 deletions

2
external/libds vendored

View File

@@ -206,7 +206,7 @@ liblex_result _pattern_build_inverted_or(pattern_chain** into, int* ids, int pat
if(string[*index]) (*index)++;
}
while(string[*index] && string[*index] != ']' && result == LIBDS_SUCCESS) {
while(string[*index] && string[*index] != ']' && result == LIBLEX_SUCCESS) {
char from = '\0';
char to = '\0';
result = _pattern_read_value(&from, string, index);