From 327481b391e0f5fffde3beb2446f1259f4ccb309 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 28 May 2004 19:22:17 +0000 Subject: Silenced one signed/unsigned comparison compiler warning. --- Src/subst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/subst.c') diff --git a/Src/subst.c b/Src/subst.c index d2d75ce79..f281bda50 100644 --- a/Src/subst.c +++ b/Src/subst.c @@ -1637,7 +1637,7 @@ paramsubst(LinkList l, LinkNode n, char **str, int qt, int ssub) * Bet that's easier said than done. */ val = getstrvalue(v); - fwidth = v->pm->ct ? v->pm->ct : strlen(val); + fwidth = v->pm->ct ? v->pm->ct : (int)strlen(val); switch (v->pm->flags & (PM_LEFT | PM_RIGHT_B | PM_RIGHT_Z)) { char *t; unsigned int t0; -- cgit 1.4.1