From f038f1f2d7fc6d2cbd7ba49fe2b6dba6f9a72fc1 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Wed, 8 Mar 2017 11:29:02 +0000 Subject: Make it build with skalibs 2.5.0.0 --- src/libexecline/el_pushenv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libexecline/el_pushenv.c') diff --git a/src/libexecline/el_pushenv.c b/src/libexecline/el_pushenv.c index 9af5ec5..6cc5650 100644 --- a/src/libexecline/el_pushenv.c +++ b/src/libexecline/el_pushenv.c @@ -28,12 +28,12 @@ int el_pushenv (stralloc *sa, char const *const *envp, size_t envlen, char const } else { - size_t n ; + unsigned int n ; char fmt[UINT_FMT+1] = ":" ; if (colon + 1 + uint_scan(envp[i] + colon + 1, &n) != equal) goto copyit ; - n = 1 + uint_fmt(fmt+1, n+1) ; + j = 1 + uint_fmt(fmt+1, n+1) ; if (!stralloc_catb(sa, envp[i], colon)) goto err ; - if (!stralloc_catb(sa, fmt, n)) goto err ; + if (!stralloc_catb(sa, fmt, j)) goto err ; } if (!stralloc_catb(sa, envp[i] + equal, strlen(envp[i] + equal) + 1)) goto err ; continue ; -- cgit v1.2.3