diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-02-26 11:43:44 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-26 11:43:44 -0800 |
commit | a543d5cc63e17102b4938aa03d9e2d69737e34b4 (patch) | |
tree | 6436c4b64d1bc7cb96a247bb5a90c22185c42fbf | |
parent | 207ac40c68ca88fb758e806937ad88f52a2cae86 (diff) | |
download | syslinux-a543d5cc63e17102b4938aa03d9e2d69737e34b4.tar.gz |
fs/iso9660: remove unused variables
Remove variables which are no longer used.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | core/fs/iso9660/iso9660.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/fs/iso9660/iso9660.c b/core/fs/iso9660/iso9660.c index 6bec615f..cd2abba1 100644 --- a/core/fs/iso9660/iso9660.c +++ b/core/fs/iso9660/iso9660.c @@ -271,8 +271,6 @@ static struct dirent *iso_readdir(struct file *file) const struct iso_dir_entry *de; struct dirent *dirent; const char *data = NULL; - size_t de_len, de_name_len; - const char *de_name; while (1) { size_t offset = file->offset & (BLOCK_SIZE(fs) - 1); |