1) returns score instead of distance into equivalences

CVS patchset: 850
CVS date: 1996/07/16 03:43:33
This commit is contained in:
ewt 1996-07-16 03:43:33 +00:00
parent 7ac283b75a
commit 5a03def294
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ static int findArchOsScore(struct archosEquivTable * table, char * name) {
info = archosEquivSearch(table, name);
if (info)
return info - table->list;
return info->score;
else
return 0;
}