diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2018-06-20 19:34:06 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2018-06-20 19:34:06 +0300 |
commit | 14bc4013941d38740d10681e7d54711f95cb38c4 (patch) | |
tree | 43713a1548b6b3419f7a1e918067532d6abd9184 /src/nxt_conf_validation.c | |
parent | 50d458796180367b9e2e65884abd538f31b774de (diff) | |
download | unit-14bc4013941d38740d10681e7d54711f95cb38c4.tar.gz unit-14bc4013941d38740d10681e7d54711f95cb38c4.tar.bz2 |
Using own popcount where the compiler builtin is not available.
Diffstat (limited to 'src/nxt_conf_validation.c')
-rw-r--r-- | src/nxt_conf_validation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_conf_validation.c b/src/nxt_conf_validation.c index 7d9c9631..4fb4720f 100644 --- a/src/nxt_conf_validation.c +++ b/src/nxt_conf_validation.c @@ -331,7 +331,7 @@ nxt_conf_vldt_type(nxt_conf_validation_t *vldt, nxt_str_t *name, p = buf; - n = __builtin_popcount(type); + n = nxt_popcount(type); if (n > 1) { p = nxt_cpymem(p, "either ", 7); |