summaryrefslogtreecommitdiff
path: root/src/include/pgstat.h
diff options
context:
space:
mode:
authorAndres Freund2016-04-15 01:54:06 +0000
committerAndres Freund2016-04-15 02:25:16 +0000
commit533cd2303aa6558721e76295fd1ffb05211764f9 (patch)
tree9c3723b45c87a9c9120b215c038a03246a0a3a12 /src/include/pgstat.h
parent7b16781228d6c0a2db66d71e33e64b9606779feb (diff)
Remove trailing commas in enums.
These aren't valid C89. Found thanks to gcc's -Wc90-c99-compat. These exist in differing places in most supported branches.
Diffstat (limited to 'src/include/pgstat.h')
-rw-r--r--src/include/pgstat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h
index 1fc45acc23..4be09fe8dc 100644
--- a/src/include/pgstat.h
+++ b/src/include/pgstat.h
@@ -718,7 +718,7 @@ typedef enum WaitClass
typedef enum ProgressCommandType
{
PROGRESS_COMMAND_INVALID,
- PROGRESS_COMMAND_VACUUM,
+ PROGRESS_COMMAND_VACUUM
} ProgressCommandType;
#define PGSTAT_NUM_PROGRESS_PARAM 10