aboutsummaryrefslogtreecommitdiffstats
path: root/fileset.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-10 13:28:54 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-10 13:28:54 +0000
commit1694dbc296db14e65ce653f82563161f0ef0569d (patch)
tree2ada1f582cd5d7974b94b93466448251209eb789 /fileset.c
parent2039b2159aa4785bdb6df9a7adea3f9b215c157a (diff)
Removed some unused assignments.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30920 f5534014-38df-0310-8fa8-9805f1628bb7
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 */
}