casts for picky compilers.

This commit is contained in:
Guido van Rossum 1999-04-10 15:48:23 +00:00
parent cbf8906f5d
commit ff1ccbfc21
3 changed files with 4 additions and 3 deletions

View File

@ -811,7 +811,8 @@ static int re_optimize_star_jump(bufp, code)
p2 = code;
/* p1 points inside loop, p2 points to after loop */
if (!re_do_compile_fastmap(bufp->buffer, bufp->used,
p2 - bufp->buffer, &can_be_null, map))
(int)(p2 - bufp->buffer),
&can_be_null, map))
goto make_normal_jump;
/* If we might introduce a new update point inside the

View File

@ -195,7 +195,7 @@ sha_transform(sha_info)
SHA_INT32 T, A, B, C, D, E, W[80], *WP;
memcpy(W, sha_info->data, sizeof(sha_info->data));
longReverse(W, sizeof(sha_info->data), sha_info->Endianness);
longReverse(W, (int)sizeof(sha_info->data), sha_info->Endianness);
for (i = 16; i < 80; ++i) {
W[i] = W[i-3] ^ W[i-8] ^ W[i-14] ^ W[i-16];

View File

@ -512,7 +512,7 @@ file_read(f, args)
if (!PyArg_ParseTuple(args, "|l", &bytesrequested))
return NULL;
if (bytesrequested < 0)
buffersize = new_buffersize(f, 0);
buffersize = new_buffersize(f, (size_t)0);
else
buffersize = bytesrequested;
v = PyString_FromStringAndSize((char *)NULL, buffersize);