]> granicus.if.org Git - pgbouncer/commitdiff
Fix some format warnings under win64
authorMarko Kreen <markokr@gmail.com>
Fri, 12 Feb 2016 13:34:41 +0000 (15:34 +0200)
committerMarko Kreen <markokr@gmail.com>
Fri, 12 Feb 2016 13:34:41 +0000 (15:34 +0200)
src/util.c

index 986baed091c060a4bb74224333907c06304556b9..d1b3d1eae0367fda97941b44e581562718d0273d 100644 (file)
@@ -407,7 +407,7 @@ const char *pga_str(const PgAddr *a, char *dst, int dstlen)
        if (pga_family(a) == AF_INET6) {
                snprintf(dst, dstlen, "[%s]:%d", buf, pga_port(a));
        } else if (pga_family(a) == AF_UNIX && a->scred.pid) {
-               snprintf(dst, dstlen, "%s:%d$%u", buf, pga_port(a), a->scred.pid);
+               snprintf(dst, dstlen, "%s:%d$%lu", buf, pga_port(a), (unsigned long)a->scred.pid);
        } else {
                snprintf(dst, dstlen, "%s:%d", buf, pga_port(a));
        }
@@ -434,7 +434,7 @@ const char *pga_details(const PgAddr *a, char *dst, int dstlen)
        if (pga_family(a) == AF_INET6) {
                snprintf(dst, dstlen, "[%s]:%d", buf, pga_port(a));
        } else if (pga_family(a) == AF_UNIX && a->scred.pid) {
-               snprintf(dst, dstlen, "%s(%u@%s):%d", buf, a->scred.pid, cached_hostname(), pga_port(a));
+               snprintf(dst, dstlen, "%s(%lu@%s):%d", buf, (unsigned long)a->scred.pid, cached_hostname(), pga_port(a));
        } else {
                snprintf(dst, dstlen, "%s:%d", buf, pga_port(a));
        }