diff options
author | Jason Evans <je@fb.com> | 2016-02-24 19:04:08 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2016-02-24 21:03:48 (GMT) |
commit | 0931cecbfaeada8b10fed56ff0175c8ffb9e9233 (patch) | |
tree | c49a8b812bf8b9e67ebe31e313fe21be9e9707e4 /src/jemalloc.c | |
parent | 8f683b94a751c65af8f9fa25970ccf2917b96bb8 (diff) | |
download | jemalloc-0931cecbfaeada8b10fed56ff0175c8ffb9e9233.zip jemalloc-0931cecbfaeada8b10fed56ff0175c8ffb9e9233.tar.gz jemalloc-0931cecbfaeada8b10fed56ff0175c8ffb9e9233.tar.bz2 |
Use ssize_t for readlink() rather than int.
Diffstat (limited to 'src/jemalloc.c')
-rw-r--r-- | src/jemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jemalloc.c b/src/jemalloc.c index 3d356c3..1acea40 100644 --- a/src/jemalloc.c +++ b/src/jemalloc.c @@ -958,7 +958,7 @@ malloc_conf_init(void) } break; case 2: { - int linklen = 0; + ssize_t linklen = 0; #ifndef _WIN32 int saved_errno = errno; const char *linkname = |