snprintf() %I64d code fix.

This commit is contained in:
Bruce Momjian 2005-03-02 15:07:09 +00:00
parent bb7a3a740c
commit 022ece2cf1
1 changed files with 3 additions and 2 deletions

View File

@ -65,7 +65,7 @@
* causing nasty effects.
**************************************************************/
/*static char _id[] = "$PostgreSQL: pgsql/src/port/snprintf.c,v 1.13 2005/03/02 14:48:22 momjian Exp $";*/
/*static char _id[] = "$PostgreSQL: pgsql/src/port/snprintf.c,v 1.14 2005/03/02 15:07:09 momjian Exp $";*/
int snprintf(char *str, size_t count, const char *fmt,...);
int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
@ -276,6 +276,7 @@ dopr(char *buffer, const char *format, va_list args, char *end)
longflag = 1;
goto nextch;
}
break;
case 'u':
case 'U':
/* fmtnum(value,base,dosign,ljust,len,zpad,&output) */