INS_CHAR( ch, sp, bep, cc ) ; \
width-- ; \
} \
- while ( width > len )
+ while ( (size_t)width > len )
/*
* Prefix the character ch to the string str
s_len--;
min_width--;
}
- PAD((size_t)min_width, s_len, pad_char);
+ PAD(min_width, s_len, pad_char);
}
/*
* Print the string s.
}
if (adjust_width && adjust == LEFT && (size_t)min_width > s_len)
- PAD((size_t)min_width, s_len, pad_char);
+ PAD(min_width, s_len, pad_char);
if (free_zcopy) {
zval_ptr_dtor_str(&zcopy);
}