aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorAndersBroman <anders.broman@ericsson.com>2014-06-17 00:00:23 +0200
committerAnders Broman <a.broman58@gmail.com>2014-06-16 22:03:12 +0000
commitf5476e90a014eacbffe4b5449605badbbd6e748e (patch)
tree733163e5aa31ceb61147fc6d65c5c122f6e3a7a6 /wsutil
parent319ad977175e34dde70799aae7c68ff24f24b977 (diff)
Explicitly declare/cast 'unsigned <variable>' as 'unsigned int <variable>'
Applying part of Bug 7825 Change-Id: I460b5c61b04d793ccc27c25debbd5e8f08bc6974 Reviewed-on: https://code.wireshark.org/review/2280 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/md5.c b/wsutil/md5.c
index 54ab6533cd..ac9aac3c80 100644
--- a/wsutil/md5.c
+++ b/wsutil/md5.c
@@ -59,7 +59,7 @@
/*
* Note: this code is harmless on little-endian machines.
*/
-static void byteReverse(guint32 *buf, unsigned longs)
+static void byteReverse(guint32 *buf, unsigned int longs)
{
guint32 t;
do {