diff options
author | Bruce Momjian | 2001-03-22 06:16:21 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-03-22 06:16:21 +0000 |
commit | 0686d49da0a34ad92f61f791ea1039dec5d20f41 (patch) | |
tree | 11c8f58fb4364f5904c3cbad5c7a28ccea5d4049 /src/backend/lib | |
parent | 9e1552607a9dc6bc23e43d46770a9063ade4f3f0 (diff) |
Remove dashes in comments that don't need them, rewrap with pgindent.
Diffstat (limited to 'src/backend/lib')
-rw-r--r-- | src/backend/lib/stringinfo.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/lib/stringinfo.c b/src/backend/lib/stringinfo.c index 239766825f..f4b4294eaa 100644 --- a/src/backend/lib/stringinfo.c +++ b/src/backend/lib/stringinfo.c @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: stringinfo.c,v 1.27 2001/01/24 19:42:55 momjian Exp $ + * $Id: stringinfo.c,v 1.28 2001/03/22 06:16:13 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -106,11 +106,11 @@ appendStringInfo(StringInfo str, const char *fmt,...) for (;;) { - /*---------- - * Try to format the given string into the available space; - * but if there's hardly any space, don't bother trying, - * just fall through to enlarge the buffer first. - *---------- + + /* + * Try to format the given string into the available space; but if + * there's hardly any space, don't bother trying, just fall + * through to enlarge the buffer first. */ avail = str->maxlen - str->len - 1; if (avail > 16) |