Prevent compiler warning from sprintf in recent ipv6 patch.

This commit is contained in:
Bruce Momjian 2003-06-24 22:42:42 +00:00
parent 945543d919
commit 4b1fe23153
1 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.13 2003/06/24 22:21:22 momjian Exp $";
static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.14 2003/06/24 22:42:42 momjian Exp $";
#endif
#include "postgres.h"
@ -270,9 +270,9 @@ inet_cidr_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size)
if (!double_colon) {
if (bits < 128 - 32)
cp += SPRINTF((cp, "::", bits));
cp += SPRINTF((cp, "::%d", bits));
else if (bits < 128 - 16)
cp += SPRINTF((cp, ":0", bits));
cp += SPRINTF((cp, ":0%d", bits));
}
/* Format CIDR /width. */