Fix loop in glue_tool_sync

This commit is contained in:
Howard Chu 2002-01-11 09:04:34 +00:00
parent 914f33fc9a
commit 340d288db3

View file

@ -766,7 +766,7 @@ glue_tool_sync (
int i;
/* just sync everyone */
for (i = 0; b0->be_nsuffix[i]; i++)
for (i = 0; i<gi->nodes; i++)
if (gi->n[i].be->be_sync)
gi->n[i].be->be_sync (gi->n[i].be);
return 0;