src/frontend/variable.c, swallow "warning: conversion to 'int' from 'size_t' may change the sign of the result"
This commit is contained in:
parent
7b0275ebf7
commit
ccc4c60d81
|
|
@ -740,7 +740,7 @@ cp_variablesubst(wordlist *wlist)
|
||||||
if (wlist == wl)
|
if (wlist == wl)
|
||||||
wlist = nwl;
|
wlist = nwl;
|
||||||
wl = wl_splice(wl, nwl);
|
wl = wl_splice(wl, nwl);
|
||||||
i = strlen(wl->wl_word);
|
i = (int) strlen(wl->wl_word);
|
||||||
x = wl->wl_word;
|
x = wl->wl_word;
|
||||||
wl->wl_word = tprintf("%s%s", wl->wl_word, tail_);
|
wl->wl_word = tprintf("%s%s", wl->wl_word, tail_);
|
||||||
free(x);
|
free(x);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue