diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-02-26 12:10:29 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-26 12:10:29 -0800 |
commit | df88057cf111bfb00f27da51b53591742239a974 (patch) | |
tree | ea70c5ca11a83032bb43f02c39da93d539715098 | |
parent | a543d5cc63e17102b4938aa03d9e2d69737e34b4 (diff) | |
download | syslinux.git-df88057cf111bfb00f27da51b53591742239a974.tar.gz syslinux.git-df88057cf111bfb00f27da51b53591742239a974.tar.xz syslinux.git-df88057cf111bfb00f27da51b53591742239a974.zip |
core/readdir.c: remove unused variable
Remove an unused variable in opendir().
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | core/fs/readdir.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/fs/readdir.c b/core/fs/readdir.c index 33a67c84..0e356413 100644 --- a/core/fs/readdir.c +++ b/core/fs/readdir.c @@ -10,7 +10,6 @@ void opendir(com32sys_t *regs) { const char *src = MK_PTR(regs->es, regs->esi.w[0]); - struct file *file; int rv; rv = searchdir(src); |