Problem: Compiler warnings for 32/64 bit usage.
Solution: Add type casts. (Mike Williams, closes #8870)
{
lcs_chars.tab1 = NUL;
lcs_chars.tab3 = NUL;
- if (multispace_len)
+ if (multispace_len > 0)
{
lcs_chars.multispace = ALLOC_MULT(int, multispace_len + 1);
lcs_chars.multispace[multispace_len] = NUL;
if (*s == ',' || *s == NUL)
{
- if (round)
+ if (round > 0)
{
if (tab[i].cp == &lcs_chars.tab2)
{
if (i == entries)
{
- len = STRLEN("multispace");
+ len = (int)STRLEN("multispace");
if ((varp == &p_lcs || varp == &wp->w_p_lcs)
&& STRNCMP(p, "multispace", len) == 0
&& p[len] == ':'
else
{
int multispace_pos = 0;
+
while (*s != NUL && *s != ',')
{
c1 = mb_ptr2char_adv(&s);
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 3437,
/**/
3436,
/**/
static int xdl_emit_record(xdfile_t *xdf, long ri, char const *pre, xdemitcb_t *ecb) {
- long size, psize = strlen(pre);
+ long size, psize = (long)strlen(pre);
char const *rec;
size = xdl_get_rec(xdf, ri, &rec);
mb[1].size = size;
if (size > 0 && rec[size - 1] != '\n') {
mb[2].ptr = (char *) "\n\\ No newline at end of file\n";
- mb[2].size = strlen(mb[2].ptr);
+ mb[2].size = (long)strlen(mb[2].ptr);
i++;
}
if (ecb->out_line(ecb->priv, mb, i) < 0) {