summaryrefslogtreecommitdiff
path: root/src/tutorial
diff options
context:
space:
mode:
authorBruce Momjian2005-10-15 02:49:52 +0000
committerBruce Momjian2005-10-15 02:49:52 +0000
commit1dc34982511d91ef8a2b71bdcb870f067c1b3da9 (patch)
tree1046adab1d4b964e0c38afeec0ee6546f61d9a8a /src/tutorial
parent790c01d28099587bbe2c623d4389b62ee49b1dee (diff)
Standard pgindent run for 8.1.
Diffstat (limited to 'src/tutorial')
-rw-r--r--src/tutorial/beard.c4
-rw-r--r--src/tutorial/funcs_new.c3
2 files changed, 3 insertions, 4 deletions
diff --git a/src/tutorial/beard.c b/src/tutorial/beard.c
index 4157d2195d..f31a119770 100644
--- a/src/tutorial/beard.c
+++ b/src/tutorial/beard.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/tutorial/beard.c,v 1.12 2004/12/31 22:04:05 pgsql Exp $
+ * $PostgreSQL: pgsql/src/tutorial/beard.c,v 1.13 2005/10/15 02:49:52 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -55,7 +55,7 @@ beard(Oid picture)
beard_fd = DatumGetInt32(DirectFunctionCall2(lo_open,
ObjectIdGetDatum(beard),
- Int32GetDatum(INV_WRITE)));
+ Int32GetDatum(INV_WRITE)));
if (beard_fd < 0)
elog(ERROR, "Cannot access beard large object");
diff --git a/src/tutorial/funcs_new.c b/src/tutorial/funcs_new.c
index e548b85ee4..9c63abaf14 100644
--- a/src/tutorial/funcs_new.c
+++ b/src/tutorial/funcs_new.c
@@ -125,8 +125,7 @@ c_overpaid(PG_FUNCTION_ARGS)
PG_RETURN_BOOL(false);
/*
- * Alternatively, we might prefer to do PG_RETURN_NULL() for null
- * salary
+ * Alternatively, we might prefer to do PG_RETURN_NULL() for null salary
*/
PG_RETURN_BOOL(salary > limit);