summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2016-02-17 04:51:22 +0000
committerPavan Deolasee2016-10-18 09:58:31 +0000
commit052aec3c43d1bf303618204d4e766c8ec9392b1a (patch)
tree94f3c45230395411932e57033d6a2b0f24782162
parent44949dab842ca32607e7159ab51b0736e920dfda (diff)
Correct a typo
-rw-r--r--src/include/utils/elog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h
index a7cd8cb892..0f7c773662 100644
--- a/src/include/utils/elog.h
+++ b/src/include/utils/elog.h
@@ -142,7 +142,7 @@
#define ereport_domain(elevel, domain, rest) \
do { \
const int elevel_ = (elevel); \
- if (errstart(elevel, __FILE__, __LINE__, PG_FUNCNAME_MACRO, domain)) \
+ if (errstart(elevel_, __FILE__, __LINE__, PG_FUNCNAME_MACRO, domain)) \
errfinish rest; \
if (elevel_ >= ERROR) \
pg_unreachable(); \