8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e48b77 commit 7a58167Copy full SHA for 7a58167
src/backend/utils/error/elog.c
@@ -42,7 +42,7 @@
42
*
43
44
* IDENTIFICATION
45
- * $PostgreSQL: pgsql/src/backend/utils/error/elog.c,v 1.215 2009/06/11 14:49:05 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/error/elog.c,v 1.216 2009/06/25 23:07:15 tgl Exp $
46
47
*-------------------------------------------------------------------------
48
*/
@@ -75,6 +75,11 @@
75
#undef _
76
#define _(x) err_gettext(x)
77
78
+static const char *err_gettext(const char *str)
79
+/* This extension allows gcc to check the format string for consistency with
80
+ the supplied arguments. */
81
+__attribute__((format_arg(1)));
82
+
83
/* Global variables */
84
ErrorContextCallback *error_context_stack = NULL;
85
0 commit comments