aboutsummaryrefslogtreecommitdiff
path: root/sys/libbio/io/newick.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/libbio/io/newick.c')
-rw-r--r--sys/libbio/io/newick.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/libbio/io/newick.c b/sys/libbio/io/newick.c
index da94ef2..164516f 100644
--- a/sys/libbio/io/newick.c
+++ b/sys/libbio/io/newick.c
@@ -86,7 +86,7 @@ lex(io·Peeker s, void* fp)
}
s.unget(fp, *c);
- Assert(c - b < 1024);
+ assert(c - b < 1024);
*c = 0;
tok.kind = tok·space;
@@ -114,7 +114,7 @@ lex(io·Peeker s, void* fp)
if (isvalidchar(*c)) goto IDENT;
s.unget(fp, *c);
- Assert(c - b < 1024);
+ assert(c - b < 1024);
*c = 0;
tok.kind = tok·number;
@@ -125,7 +125,7 @@ lex(io·Peeker s, void* fp)
while ((*c) != '\"') {
*(++c) = s.get(fp);
}
- Assert(c - b < 1024);
+ assert(c - b < 1024);
*c = '\0';
tok.kind = tok·ident;
@@ -138,7 +138,7 @@ lex(io·Peeker s, void* fp)
*(++c) = s.get(fp);
}
s.unget(fp, *c);
- Assert(c - b < 1024);
+ assert(c - b < 1024);
*c = '\0';
tok.kind = tok·ident;