summaryrefslogtreecommitdiff
path: root/epan/dfilter/grammar.lemon
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-06-03 07:36:25 +0000
committerGuy Harris <guy@alum.mit.edu>2004-06-03 07:36:25 +0000
commite1e690ff3a51a92213e5f9ef948a8388a58e48de (patch)
tree4e87baf3061e6ff75a7db7860e14ba5b80916cf8 /epan/dfilter/grammar.lemon
parente6e3ff60f5db20ca0736e082121b3f4110d34762 (diff)
downloadwireshark-e1e690ff3a51a92213e5f9ef948a8388a58e48de.tar.gz
From Graeme Hewson:
Use gint32 instead of guint32 for node data. Fix up some other signed-vs-unsigned issues in the display filter parser and lexical analyzer. svn path=/trunk/; revision=11085
Diffstat (limited to 'epan/dfilter/grammar.lemon')
-rw-r--r--epan/dfilter/grammar.lemon4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dfilter/grammar.lemon b/epan/dfilter/grammar.lemon
index 65c081464f..76bab3c851 100644
--- a/epan/dfilter/grammar.lemon
+++ b/epan/dfilter/grammar.lemon
@@ -1,4 +1,4 @@
-/* $Id: grammar.lemon,v 1.9 2004/02/27 12:00:30 obiot Exp $ */
+/* $Id: grammar.lemon,v 1.10 2004/06/03 07:36:24 guy Exp $ */
%include {
#ifdef HAVE_CONFIG_H
@@ -76,7 +76,7 @@ any "error" symbols are shifted, if possible. */
stnode_data(TOKEN));
break;
case STTYPE_INTEGER:
- dfilter_fail("The integer %u was unexpected in this context.",
+ dfilter_fail("The integer %d was unexpected in this context.",
stnode_value(TOKEN));
break;
case STTYPE_FIELD: