diff options
author | Bruce Momjian | 2002-09-04 20:31:48 +0000 |
---|---|---|
committer | Bruce Momjian | 2002-09-04 20:31:48 +0000 |
commit | e50f52a074bdf0d6a9dc384840e641c4c0b0bb1a (patch) | |
tree | ab73e8c8ec94a6ddc774c1f9c49b87aa6b93fd13 /src/backend/lib/stringinfo.c | |
parent | c91ceec21d357d6d857163d897ac75a79c883dee (diff) |
pgindent run.
Diffstat (limited to 'src/backend/lib/stringinfo.c')
-rw-r--r-- | src/backend/lib/stringinfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/lib/stringinfo.c b/src/backend/lib/stringinfo.c index 62f63a547f2..9b9fc3d1800 100644 --- a/src/backend/lib/stringinfo.c +++ b/src/backend/lib/stringinfo.c @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: stringinfo.c,v 1.31 2002/06/20 20:29:28 momjian Exp $ + * $Id: stringinfo.c,v 1.32 2002/09/04 20:31:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -120,7 +120,7 @@ appendStringInfo(StringInfo str, const char *fmt,...) * an example of a platform with such a bug. */ #ifdef USE_ASSERT_CHECKING - str->data[str->maxlen-1] = '\0'; + str->data[str->maxlen - 1] = '\0'; #endif va_start(args, fmt); @@ -128,7 +128,7 @@ appendStringInfo(StringInfo str, const char *fmt,...) fmt, args); va_end(args); - Assert(str->data[str->maxlen-1] == '\0'); + Assert(str->data[str->maxlen - 1] == '\0'); /* * Note: some versions of vsnprintf return the number of chars |