diff options
author | Guido van Rossum <guido@python.org> | 1997-04-11 20:44:04 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-11 20:44:04 +0000 |
commit | 66a73b2928fa492c063855d4f1cf1c78f335db2b (patch) | |
tree | d7b5f6ee5103af946a5d3881e94f7adcf69cc0c5 /Modules/structmodule.c | |
parent | aa95c56a2316273e139ac343d2809518531e69fe (diff) | |
download | cpython-66a73b2928fa492c063855d4f1cf1c78f335db2b.tar.gz |
Keep Microsoft VC happy.
Diffstat (limited to 'Modules/structmodule.c')
-rw-r--r-- | Modules/structmodule.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Modules/structmodule.c b/Modules/structmodule.c index f0fb4914e0..dbba9b48f2 100644 --- a/Modules/structmodule.c +++ b/Modules/structmodule.c @@ -179,7 +179,7 @@ pack_float(x, p, incr) p += incr; /* Second byte */ - *p = ((e&1)<<7) | (fbits>>16); + *p = (char) (((e&1)<<7) | (fbits>>16)); p += incr; /* Third byte */ @@ -255,7 +255,7 @@ pack_double(x, p, incr) p += incr; /* Second byte */ - *p = ((e&0xF)<<4) | (fhi>>24); + *p = (char) (((e&0xF)<<4) | (fhi>>24)); p += incr; /* Third byte */ @@ -508,7 +508,7 @@ np_byte(p, v, f) long x; if (get_long(v, &x) < 0) return -1; - *p = x; + *p = (char)x; return 0; } @@ -536,7 +536,7 @@ np_short(p, v, f) long x; if (get_long(v, &x) < 0) return -1; - * (short *)p = x; + * (short *)p = (short)x; return 0; } @@ -700,7 +700,7 @@ bp_int(p, v, f) return -1; i = f->size; do { - p[--i] = x; + p[--i] = (char)x; x >>= 8; } while (i > 0); return 0; @@ -718,7 +718,7 @@ bp_uint(p, v, f) return -1; i = f->size; do { - p[--i] = x; + p[--i] = (char)x; x >>= 8; } while (i > 0); return 0; @@ -830,7 +830,7 @@ lp_int(p, v, f) return -1; i = f->size; do { - *p++ = x; + *p++ = (char)x; x >>= 8; } while (--i > 0); return 0; @@ -848,7 +848,7 @@ lp_uint(p, v, f) return -1; i = f->size; do { - *p++ = x; + *p++ = (char)x; x >>= 8; } while (--i > 0); return 0; |