Commit c517ccfb authored by Geoff Simmons's avatar Geoff Simmons

Minor tweak.

parent ef8742c5
......@@ -223,13 +223,13 @@ PT_Lookup(const struct pt_y * const restrict root,
char * const restrict * const restrict strings,
const char * const restrict subject)
{
const struct pt_y *y;
const struct pt_y *y = root;
const unsigned char *c = (unsigned char *) subject;
AN(strings);
AN(subject);
for (y = root; y != NULL;) {
while (y != NULL) {
const unsigned char *s;
unsigned char b;
unsigned short i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment