add shorten 64 to 32 warnings back on with fixes

This commit is contained in:
toddouska
2012-10-19 12:44:23 -07:00
parent ba4d058ba7
commit c974d77213
17 changed files with 68 additions and 64 deletions

View File

@@ -181,7 +181,7 @@ int GenerateSeed(OS_Seed* os, byte* output, word32 sz)
}
while (sz) {
int len = read(os->fd, output, sz);
int len = (int)read(os->fd, output, sz);
if (len == -1) {
ret = READ_RAN_E;
break;