Make the file header comments to follow the style used elsewhere.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 8 Jan 2015 08:54:36 +0000 (10:54 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 16 Jan 2015 11:37:06 +0000 (13:37 +0200)
This brings us up-to-date with pg_rewind upstream commit
48fe9640be9349f1a32aefccb88475368fb0a265

contrib/pg_rewind/datapagemap.c
contrib/pg_rewind/datapagemap.h
contrib/pg_rewind/filemap.c

index c1a956b7581e800ad6d3a7ed2a110ecf3346155e..0f6147fc75ec8ef5ca9cef46839ef6ea6cdff9a9 100644 (file)
@@ -1,9 +1,13 @@
-/*
- * A data structure for keeping track of data pages that have changed.
+/*-------------------------------------------------------------------------
+ *
+ * datapagemap.c
+ *       A data structure for keeping track of data pages that have changed.
  *
  * This is a fairly simple bitmap.
  *
  * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ *
+ *-------------------------------------------------------------------------
  */
 
 #include "postgres_fe.h"
index 3f04d81ea49a6e80ed869088bae29f2647839835..9a216fcc759237469bb90f6a17a0d7b20a263d24 100644 (file)
@@ -3,6 +3,7 @@
  * datapagemap.h
  *
  * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ *
  *-------------------------------------------------------------------------
  */
 #ifndef DATAPAGEMAP_H
index 48baf60396d040a4a1af6dffc88dd3e414cc7695..1daac0c23edf1bcc201c29ab3a00df8525d71de8 100644 (file)
@@ -1,7 +1,11 @@
-/*
- * A data structure for keeping track of files that have changed.
+/*-------------------------------------------------------------------------
+ *
+ * filemap.c
+ *       A data structure for keeping track of files that have changed.
  *
  * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ *
+ *-------------------------------------------------------------------------
  */
 
 #include "postgres_fe.h"