Commit 80324fb1 authored by Teodor Sigaev's avatar Teodor Sigaev

Fix typeing as Tom suggest

parent 1bdc5ab2
...@@ -29,7 +29,7 @@ makesign(QUERYTYPE * a) ...@@ -29,7 +29,7 @@ makesign(QUERYTYPE * a)
for (i = 0; i < a->size; i++) for (i = 0; i < a->size; i++)
{ {
if (ptr->type == VAL) if (ptr->type == VAL)
sign |= 1 << (ptr->val % SIGLEN); sign |= ((TPQTGist)1) << (ptr->val % SIGLEN);
ptr++; ptr++;
} }
......
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