Skip to content
Snippets Groups Projects
Commit 00a28378 authored by Howard Chu's avatar Howard Chu
Browse files

Fix previous idl_find patch. Cannot test <=0 with unsigned ints, duh...

parent 6cc6a187
No related branches found
No related tags found
No related merge requests found
......@@ -306,7 +306,7 @@ idl_find(
ID id
)
{
unsigned int lo=0, hi=ID_BLOCK_NIDS(b)-1, nr;
int lo=0, hi=ID_BLOCK_NIDS(b)-1, nr;
for (;lo<=hi;)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment