X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fruntime%2Fwrap.c;h=5f1873861ff765d228566564503db4107298affd;hb=fee931bde89778322557461356580752bc819cbf;hp=2bda7f900ad84e701e97c26044bebe09193ec5c8;hpb=85c2c0dc6aa7d5370395cc0a24647d5effe35a0d;p=sbcl.git diff --git a/src/runtime/wrap.c b/src/runtime/wrap.c index 2bda7f9..5f18738 100644 --- a/src/runtime/wrap.c +++ b/src/runtime/wrap.c @@ -359,7 +359,7 @@ uid_homedir(uid_t uid) } else { char *result = malloc(len + 2); if (result) { - int nchars = sprintf(result,"%s/",p->pw_dir); + unsigned int nchars = sprintf(result,"%s/",p->pw_dir); if (nchars == len + 1) { return result; } else {