first lut function, suite

This commit is contained in:
2019-01-14 14:04:17 +01:00
parent ae4c5334d0
commit 4c984ebdcc
3 changed files with 5 additions and 3 deletions

View File

@@ -20,11 +20,11 @@ for(count=0; count<1024; count++) {
foo = fscanf(fp, "%f", &where->vals[foo]);
if (1 != foo) {
fprintf(stderr, "%s: bad read %d\n", __func__, foo);
return -2;
return -4;
}
}
return -1;
return 0;
}
/* ---------------------------------------------------------------- */
@@ -60,6 +60,7 @@ if (foo) {
exit(5);
}
foo = slurp_lut1024f(fplut, where, 0);
fclose(fplut);