fix find_lib_name(), introduced in previous commit

This commit is contained in:
rlar 2013-01-13 19:52:37 +01:00
parent 4b3c1df2b8
commit 85e6a7563c
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ find_lib_name(int i, char *s) {
int j;
for (j = 0; j < num_lib_names[i]; j++)
if (strcmp(library_name[i][j], s) == 0)
break;
return j;
return -1;
}