aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2014-04-04 11:26:01 -0400
committerRobert Haas <rhaas@postgresql.org>2014-04-04 11:29:50 -0400
commit59202fae0434c98beb4994c5fe4df354a6af31e6 (patch)
tree4aac1efe801fe27872a202dba130b72db0633d9b /src/backend/access/transam/xlog.c
parentb1236f4b7ba2c05542f44d07c0a9ffbec3b66295 (diff)
downloadpostgresql-59202fae0434c98beb4994c5fe4df354a6af31e6.tar.gz
postgresql-59202fae0434c98beb4994c5fe4df354a6af31e6.zip
Fix some compiler warnings that clang emits with -pedantic.
Andres Freund
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r--src/backend/access/transam/xlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 3a48227ad93..0b4a5f68a99 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -651,7 +651,7 @@ typedef enum
XLOG_FROM_ANY = 0, /* request to read WAL from any source */
XLOG_FROM_ARCHIVE, /* restored using restore_command */
XLOG_FROM_PG_XLOG, /* existing file in pg_xlog */
- XLOG_FROM_STREAM, /* streamed from master */
+ XLOG_FROM_STREAM /* streamed from master */
} XLogSource;
/* human-readable names for XLogSources, for debugging output */