diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-01-02 21:54:20 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-01-02 21:54:20 -0500 |
commit | a3b4aeecfe9870fd5895cf362cd1e92544ec885a (patch) | |
tree | 900be517051cf0c6d5fe30b324f926c27d93f6bb /src | |
parent | a7ef273e1cebb913cd4a524fcf3b42caa41bd431 (diff) | |
download | postgresql-a3b4aeecfe9870fd5895cf362cd1e92544ec885a.tar.gz postgresql-a3b4aeecfe9870fd5895cf362cd1e92544ec885a.zip |
Ooops, should use double not single quotes in StaticAssertStmt().
That's what I get for testing this on an older compiler.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/postmaster/pgstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c index d251fddc0b6..4bfa62e9162 100644 --- a/src/backend/postmaster/pgstat.c +++ b/src/backend/postmaster/pgstat.c @@ -337,7 +337,7 @@ pgstat_init(void) * compile-time cross-check that we didn't. */ StaticAssertStmt(sizeof(PgStat_Msg) <= PGSTAT_MAX_MSG_SIZE, - 'maximum stats message size exceeds PGSTAT_MAX_MSG_SIZE'); + "maximum stats message size exceeds PGSTAT_MAX_MSG_SIZE"); /* * Create the UDP socket for sending and receiving statistic messages |