diff options
| author | Tomasz Dąbrowski <[email protected]> | 2017-08-25 14:12:08 +0200 |
|---|---|---|
| committer | Tomasz Dąbrowski <[email protected]> | 2017-08-25 14:12:08 +0200 |
| commit | b2a16d6bf720356738ae46a5dabbb1661dc7234d (patch) | |
| tree | 516dcf03ffafa77d6b45f6835cbd0e4d2a00d055 /src/fmt_fp.c | |
| parent | c8341dbf7ce634af2b4cfb3aff6791fe97848cf1 (diff) | |
| download | mruby-b2a16d6bf720356738ae46a5dabbb1661dc7234d.tar.gz mruby-b2a16d6bf720356738ae46a5dabbb1661dc7234d.zip | |
fix fmt_fp.c(206) : warning C4244: 'initializing' : conversion from 'ptrdiff_t' to 'int', possible loss of data
Diffstat (limited to 'src/fmt_fp.c')
| -rw-r--r-- | src/fmt_fp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fmt_fp.c b/src/fmt_fp.c index 739211206..2c8b14d2f 100644 --- a/src/fmt_fp.c +++ b/src/fmt_fp.c @@ -203,7 +203,7 @@ fmt_fp(struct fmt_args *f, long double y, ptrdiff_t p, uint8_t fl, int t) } while (e2<0) { uint32_t carry=0, *b; - int sh=MIN(9,-e2), need=1+(p+LDBL_MANT_DIG/3+8)/9; + int sh=MIN(9,-e2), need=1+((int)p+LDBL_MANT_DIG/3+8)/9; for (d=a; d<z; d++) { uint32_t rm = *d & ((1<<sh)-1); *d = (*d>>sh) + carry; |
