aboutsummaryrefslogtreecommitdiffstats
path: root/packet-radius.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-02-05 02:47:31 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-02-05 02:47:31 +0000
commit630962f9899b802c3f872dadc4078cfcb43fe609 (patch)
tree456b2e8d72be58a4808c6696489469506466390d /packet-radius.c
parente80e3906f2cd8ea82ff10b2a8baf07fa24543f99 (diff)
Fix up some MSVC complaints about (narrowing) type conversions by
widening formal arguments or narrowing variables passed as actual arguments. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2993 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-radius.c')
-rw-r--r--packet-radius.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-radius.c b/packet-radius.c
index 7bb763d211..1afc1d0442 100644
--- a/packet-radius.c
+++ b/packet-radius.c
@@ -1,7 +1,7 @@
/* packet-radius.c
* Routines for RADIUS packet disassembly
*
- * $Id: packet-radius.c,v 1.24 2001/01/22 08:54:06 guy Exp $
+ * $Id: packet-radius.c,v 1.25 2001/02/05 02:47:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Johan Feyaerts
@@ -480,7 +480,7 @@ guint32 match_numval(guint32 val, const value_value_pair *vs)
static gchar textbuffer[2000];
-gchar *rdconvertbufftostr(gchar *dest,guint8 length,const guint8 *pd)
+gchar *rdconvertbufftostr(gchar *dest,int length,const guint8 *pd)
{
/*converts the raw buffer into printable text */
guint32 i;