aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-16 04:05:39 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-16 04:05:39 +0000
commitebaddf5c97a9bb176d032d80d318588c7e13caf1 (patch)
tree1f4158ed7e68052c732725d2535039b9523e38de /util.c
parent21315531bcf393adebaf5a9316523c8d644a70e1 (diff)
Fix the last(?) of the Win64 compilation problems.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28065 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 7e2bb41b16..a86b48afd3 100644
--- a/util.c
+++ b/util.c
@@ -59,7 +59,7 @@ get_args_as_string(int argc, char **argv, int optindex)
*/
len = 0;
for (i = optindex; i < argc; i++) {
- len += strlen(argv[i]);
+ len += (int) strlen(argv[i]);
len++; /* space, or '\0' if this is the last argument */
}