diff options
| author | Simon Tatham <anakin@pobox.com> | 2012-05-03 17:43:21 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2012-05-03 17:43:21 +0000 |
| commit | 689093cc870e60ab82a176c33613fa0aeaa0bf69 (patch) | |
| tree | 0ae533c4c553d0cd50759686363c211104c66910 /in_afm.c | |
| parent | ca37980e070dcd96d27d299bd4426858ec37ceae (diff) | |
| download | halibut-689093cc870e60ab82a176c33613fa0aeaa0bf69.zip halibut-689093cc870e60ab82a176c33613fa0aeaa0bf69.tar.gz halibut-689093cc870e60ab82a176c33613fa0aeaa0bf69.tar.bz2 halibut-689093cc870e60ab82a176c33613fa0aeaa0bf69.tar.xz | |
Remove a bunch of unused variables spotted by Ubuntu 12.04's gcc.
[originally from svn r9478]
Diffstat (limited to 'in_afm.c')
| -rw-r--r-- | in_afm.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -229,14 +229,12 @@ void read_afm_file(input *in) { } else if (strcmp(key, "StartKernPairs") == 0 || strcmp(key, "StartKernPairs0") == 0) { int nkerns, i; - 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); for (i = 0; i < nkerns; i++) { line = afm_read_line(in); if (line == NULL) |