Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8735272

Browse files
committed
Change end-of-line comma to semicolon.
1 parent d3e0860 commit 8735272

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/commands/define.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.10 1996/11/10 02:59:38 momjian Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.11 1996/11/30 17:47:07 momjian Exp $
1313
*
1414
* DESCRIPTION
1515
* The "DefineFoo" routines take the parse tree and pick out the
@@ -87,7 +87,7 @@ compute_return_type(const Node *returnType,
8787
if (nodeTag(returnType) == T_TypeName) {
8888
/* a set of values */
8989
TypeName *setType = (TypeName *)returnType;
90-
*prorettype_p = setType->name,
90+
*prorettype_p = setType->name;
9191
*returnsSet_p = true;
9292
}else {
9393
/* singleton */

0 commit comments

Comments
 (0)