diff options
Diffstat (limited to 'app/tools/halibut/in_afm.c')
-rw-r--r-- | app/tools/halibut/in_afm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/tools/halibut/in_afm.c b/app/tools/halibut/in_afm.c index 724bae7..cb2b39c 100644 --- a/app/tools/halibut/in_afm.c +++ b/app/tools/halibut/in_afm.c @@ -229,14 +229,14 @@ void read_afm_file(input *in) { } else if (strcmp(key, "StartKernPairs") == 0 || strcmp(key, "StartKernPairs0") == 0) { int nkerns, i; - kern_pair *kerns; +// kern_pair *kerns; if (!(val = strtok(NULL, " \t"))) { error(err_afmval, &in->pos, key, 1); goto giveup; } nkerns = atoi(val); sfree(line); - kerns = snewn(nkerns, kern_pair); +// kerns = snewn(nkerns, kern_pair); for (i = 0; i < nkerns; i++) { line = afm_read_line(in); if (line == NULL) |