1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-15 03:41:20 +03:00

Renaming cleanup, no pgindent yet.

This commit is contained in:
Bruce Momjian
1998-09-01 03:29:17 +00:00
parent 2aa080fc93
commit af74855a60
329 changed files with 4380 additions and 4388 deletions

View File

@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)snprintf.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
"$Id: snprintf.c,v 1.1 1998/08/01 19:30:28 scrappy Exp $";
"$Id: snprintf.c,v 1.2 1998/09/01 03:24:31 momjian Exp $";
#endif /* LIBC_SCCS and not lint */
#include <limits.h>
@@ -85,5 +85,5 @@ snprintf(str, n, fmt, va_alist)
if (on > 0)
*f._p = '\0';
va_end(ap);
return (ret);
return ret;
}