aboutsummaryrefslogtreecommitdiffstats
path: root/fileset.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-11-10 13:28:54 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-11-10 13:28:54 +0000
commita055fd2cf143abcbe771e6e36918ca872e0be70e (patch)
tree2ada1f582cd5d7974b94b93466448251209eb789 /fileset.c
parentaface86175dbf812837b42ca15938d3e7edd3c0e (diff)
Removed some unused assignments.
svn path=/trunk/; revision=30920
Diffstat (limited to 'fileset.c')
-rw-r--r--fileset.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fileset.c b/fileset.c
index 55e227627a..b7cb105bb0 100644
--- a/fileset.c
+++ b/fileset.c
@@ -246,7 +246,6 @@ fileset_add_dir(const char *fname)
WS_DIR *dir; /* scanned directory */
WS_DIRENT *file; /* current file */
const char *name;
- fileset_entry *entry;
GString *dirname;
gchar *fname_dup;
@@ -275,7 +274,7 @@ fileset_add_dir(const char *fname)
} /* if */
} else {
/* no, this is a "standalone file", just add this one */
- entry = fileset_add_file(dirname->str, get_basename(fname), TRUE /* current */);
+ fileset_add_file(dirname->str, get_basename(fname), TRUE /* current */);
/* don't add the file to the dialog here, this will be done in fileset_update_dlg() below */
}