Commit a3b4aeec authored by Tom Lane's avatar Tom Lane

Ooops, should use double not single quotes in StaticAssertStmt().

That's what I get for testing this on an older compiler.
parent a7ef273e
...@@ -337,7 +337,7 @@ pgstat_init(void) ...@@ -337,7 +337,7 @@ pgstat_init(void)
* compile-time cross-check that we didn't. * compile-time cross-check that we didn't.
*/ */
StaticAssertStmt(sizeof(PgStat_Msg) <= PGSTAT_MAX_MSG_SIZE, 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 * Create the UDP socket for sending and receiving statistic messages
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment