aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-09 14:25:29 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-09 14:25:29 +0000
commitf7ab0235c873eb43c1f6df855c88293a531b0e57 (patch)
treeafab78aa3160d7c3159a79319dd4b120259aa6d4 /tools
parent66ea16ba208fe3dcd76bc1489b804b37d3244ea8 (diff)
Removed an unused assignment.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30893 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools')
-rw-r--r--tools/lemon/lemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lemon/lemon.c b/tools/lemon/lemon.c
index be824ac985..0facd5bdc3 100644
--- a/tools/lemon/lemon.c
+++ b/tools/lemon/lemon.c
@@ -3437,7 +3437,7 @@ PRIVATE void print_stack_union(
int *plineno, /* Pointer to the line number */
int mhflag) /* True if generating makeheaders output */
{
- int lineno = *plineno; /* The line number of the output */
+ int lineno; /* The line number of the output */
char **types; /* A hash table of datatypes */
int arraysize; /* Size of the "types" array */
int maxdtlength; /* Maximum length of any ".datatype" field. */