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?

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38237 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
cmaynard 2011-07-28 12:28:06 +00:00
parent e41ea875fe
commit 23cf35c64b
1 changed files with 1 additions and 1 deletions

View File

@ -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);