aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-syslog.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-19 00:59:20 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-19 00:59:20 +0000
commit45b516044dcfdf79cecbc5551ec429051eddb95b (patch)
tree669fb5baa0d5d505a775e94d1825f1b801d55a1f /epan/dissectors/packet-syslog.c
parent3dbc37a92ea1a8c7380cf6f7077751de01e3abef (diff)
Declare nbytes to match what the routine getting a pointer to it
expects. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20843 f5534014-38df-0310-8fa8-9805f1628bb7
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;