summaryrefslogtreecommitdiff
path: root/src/tutorial
diff options
context:
space:
mode:
authorAutomatic pgindent2023-04-23 21:50:53 +0000
committerAutomatic pgindent2023-04-23 21:50:53 +0000
commit962df08da11205a2436c7e802fa16cd47b8a790e (patch)
tree0338f441a66bc0c76bb37b7dfb590dd04c27bbf4 /src/tutorial
parent8bbd0cce92be98de9f4f727b8bf66fe26e5831ea (diff)
Automatic pgindentmaster-pgindent
Diffstat (limited to 'src/tutorial')
-rw-r--r--src/tutorial/funcs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tutorial/funcs.c b/src/tutorial/funcs.c
index ceffb56835..f597777a1f 100644
--- a/src/tutorial/funcs.c
+++ b/src/tutorial/funcs.c
@@ -78,8 +78,8 @@ copytext(PG_FUNCTION_ARGS)
* VARDATA is a pointer to the data region of the new struct. The source
* could be a short datum, so retrieve its data through VARDATA_ANY.
*/
- memcpy(VARDATA(new_t), /* destination */
- VARDATA_ANY(t), /* source */
+ memcpy(VARDATA(new_t), /* destination */
+ VARDATA_ANY(t), /* source */
VARSIZE_ANY_EXHDR(t)); /* how many bytes */
PG_RETURN_TEXT_P(new_t);
}