aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pgm.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-03-22 20:55:31 +0000
committerBill Meier <wmeier@newsguy.com>2009-03-22 20:55:31 +0000
commitd6a5a7c761ef10390ff79d8bd39a461813112290 (patch)
tree70c7600431ace9c6831016767308c26e2f52fbfd /epan/dissectors/packet-pgm.c
parent2f6fe511f3638c25630f4d00ea54e86edf91170b (diff)
P64 changes: Fix some cases for which size_t is not required
svn path=/trunk/; revision=27822
Diffstat (limited to 'epan/dissectors/packet-pgm.c')
-rw-r--r--epan/dissectors/packet-pgm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-pgm.c b/epan/dissectors/packet-pgm.c
index 5581755a37..91c3beed56 100644
--- a/epan/dissectors/packet-pgm.c
+++ b/epan/dissectors/packet-pgm.c
@@ -258,7 +258,7 @@ static const char *
optsstr(guint8 opts)
{
char *msg;
- size_t returned_length, index = 0;
+ gint returned_length, index = 0;
const int MAX_STR_LEN = 256;
if (opts == 0)
@@ -290,7 +290,7 @@ static const char *
paritystr(guint8 parity)
{
char *msg;
- size_t returned_length, index = 0;
+ gint returned_length, index = 0;
const int MAX_STR_LEN = 256;
if (parity == 0)