aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lemon
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-06-10 18:55:03 +0000
committerGerald Combs <gerald@wireshark.org>2013-06-10 18:55:03 +0000
commit62d87b6cadc42c606012d94d4eee6b705a0c7f9e (patch)
treecde78d31b9526a8638699cef4ee2d316a97c3d22 /tools/lemon
parent878e89885b42c42adcf16c35191a1f17bfbf88b8 (diff)
tools/lemon/lemon.c: Fix an integer shortening issue. (CMake enables
-Werror here but Autotools doesn't. Which is correct?) epan/dissectors/dcerpc: idl2wrs isn't an installed executable in Autotools so don't make it one in CMake. svn path=/trunk/; revision=49871
Diffstat (limited to 'tools/lemon')
-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 0459c24da9..5e1524f218 100644
--- a/tools/lemon/lemon.c
+++ b/tools/lemon/lemon.c
@@ -1646,7 +1646,7 @@ int main(int argc _U_, char **argv)
** changed.
*/
static char *merge( char *a, char *b, int (*cmp)(const char*,const char*),
- int offset
+ unsigned long offset
){
char *ptr, *head;