aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-syslog.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-02-19 00:59:20 +0000
committerGuy Harris <guy@alum.mit.edu>2007-02-19 00:59:20 +0000
commit1a2a777a1f629892be9c2dc63f1ce3d50f2673b6 (patch)
tree669fb5baa0d5d505a775e94d1825f1b801d55a1f /epan/dissectors/packet-syslog.c
parentc127df0bc84fd745b7513a915adbe7aa2897ceac (diff)
Declare nbytes to match what the routine getting a pointer to it
expects. svn path=/trunk/; revision=20843
Diffstat (limited to 'epan/dissectors/packet-syslog.c')
-rw-r--r--epan/dissectors/packet-syslog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-syslog.c b/epan/dissectors/packet-syslog.c
index 99157f6c05..c62a845e16 100644
--- a/epan/dissectors/packet-syslog.c
+++ b/epan/dissectors/packet-syslog.c
@@ -180,7 +180,7 @@ static dissector_handle_t mtp_handle;
static tvbuff_t *
mtp3_msu_present(gint fac, gint level, const char *msg_str)
{
- gint nbytes;
+ size_t nbytes;
gchar **split_string, *msu_hex_dump;
tvbuff_t *mtp3_tvb = NULL;
guint8 *byte_array;