aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-07-28 12:28:06 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-07-28 12:28:06 +0000
commit716766aa27a0eb47def4fafa98f543e8b0f3b163 (patch)
tree64842227cb63c5ad0e315a3210c18996caf5b4e1 /packaging
parentc789918edbaa7eb856a09c2b96cc427c90007d94 (diff)
Add a cast to avoid "conversion from size_t to int, possible loss of data" warning found when attempting to create the U3 package on Windows 7-x64. Hmm, why doesn't the Window 7-x64 buildbot build U3 or portableapps packages?
svn path=/trunk/; revision=38237
Diffstat (limited to 'packaging')
-rw-r--r--packaging/u3/tools/utest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/u3/tools/utest.c b/packaging/u3/tools/utest.c
index f9508e650d..c38ebb5d3b 100644
--- a/packaging/u3/tools/utest.c
+++ b/packaging/u3/tools/utest.c
@@ -81,7 +81,7 @@ void main(int argc, char **argv)
if(argc > 1) {
- uuid_create_sha1_from_name(&u, NameSpace_WS, argv[1], strlen(argv[1]));
+ uuid_create_sha1_from_name(&u, NameSpace_WS, argv[1], (int)strlen(argv[1]));
printf("s/$(UUID)/"); puid(u); printf("/\n");
exit(0);