diff options
author | Bruce Momjian | 2010-02-26 02:01:40 +0000 |
---|---|---|
committer | Bruce Momjian | 2010-02-26 02:01:40 +0000 |
commit | 65e806cba1f0f154d51caa7478e7192ce58d1056 (patch) | |
tree | 99a656d7b4ec6d038d4c24e07fadf75db4c37e79 /src/backend/commands/define.c | |
parent | 16040575a04486d8e0823b4e304f4933144baf90 (diff) |
pgindent run for 9.0
Diffstat (limited to 'src/backend/commands/define.c')
-rw-r--r-- | src/backend/commands/define.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/define.c b/src/backend/commands/define.c index a3d45872b43..cf029cd539a 100644 --- a/src/backend/commands/define.c +++ b/src/backend/commands/define.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/define.c,v 1.107 2010/01/02 16:57:37 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/commands/define.c,v 1.108 2010/02/26 02:00:38 momjian Exp $ * * DESCRIPTION * The "DefineFoo" routines take the parse tree and pick out the @@ -156,8 +156,8 @@ defGetBoolean(DefElem *def) char *sval = defGetString(def); /* - * The set of strings accepted here should match up with - * the grammar's opt_boolean production. + * The set of strings accepted here should match up with the + * grammar's opt_boolean production. */ if (pg_strcasecmp(sval, "true") == 0) return true; |