From: Pavan Deolasee Date: Wed, 17 Feb 2016 04:51:22 +0000 (+0530) Subject: Correct a typo X-Git-Tag: XL9_5_R1BETA1~12 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=df2e27d9f3c700aea1c6ea43610186068b34dcc8;p=postgres-xl.git Correct a typo --- 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(); \