aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-08-12 21:25:19 +0000
committerGerald Combs <gerald@wireshark.org>2008-08-12 21:25:19 +0000
commite7a8150c7b3a428f498ecffe716e494a76def0e2 (patch)
tree7ba1243fdf2d2978739df10a3f49a0bdb1c4530a /wsutil
parent9aa1b43f9cdfbd7c259c8f9cfb8b64d87b2577bf (diff)
Fix a bunch of Win64 compilation errors by cowardly casting size_ts to ints.
svn path=/trunk/; revision=25992
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/file_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/file_util.c b/wsutil/file_util.c
index 7f20e4d785..59a5b50dde 100644
--- a/wsutil/file_util.c
+++ b/wsutil/file_util.c
@@ -234,7 +234,7 @@ ws_stdio_stat (const gchar *filename,
return -1;
}
- len = wcslen (wfilename);
+ len = (int) wcslen (wfilename);
while (len > 0 && G_IS_DIR_SEPARATOR (wfilename[len-1]))
len--;
if (len > 0 &&