From 33b26426ebe993b0f59e9b7683db2dcf2f7ad2dd Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Mon, 8 Feb 2016 11:10:14 +0100 Subject: [PATCH] Backpatch of 7a58d19b0 to 9.4, previously omitted. Apparently by accident the above commit was backpatched to all supported branches, except 9.4. This appears to be an error, as the issue is just as present there. Given the short amount of time before the next minor release, and given the issue is documented to be fixed for 9.4, it seems like a good idea to push this now. Original-Author: Michael Meskes Discussion: 75DB81BEEA95B445AE6D576A0A5C9E9364CBC11F@BPXM05GP.gisp.nec.co.jp --- src/interfaces/ecpg/include/datetime.h | 4 ++-- src/interfaces/ecpg/include/decimal.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/interfaces/ecpg/include/datetime.h b/src/interfaces/ecpg/include/datetime.h index e7d6d2144aa..9394a129f1b 100644 --- a/src/interfaces/ecpg/include/datetime.h +++ b/src/interfaces/ecpg/include/datetime.h @@ -5,8 +5,8 @@ #include -#ifndef _ECPGLIB_H /* source created by ecpg which defines these - * symbols */ +/* source created by ecpg which defines these symbols */ +#ifndef _ECPGLIB_H typedef timestamp dtime_t; typedef interval intrvl_t; #endif /* ndef _ECPGLIB_H */ diff --git a/src/interfaces/ecpg/include/decimal.h b/src/interfaces/ecpg/include/decimal.h index 7efed476932..11b02de8aef 100644 --- a/src/interfaces/ecpg/include/decimal.h +++ b/src/interfaces/ecpg/include/decimal.h @@ -5,8 +5,8 @@ #include -#ifndef _ECPGLIB_H /* source created by ecpg which defines this - * symbol */ +/* source created by ecpg which defines this */ +#ifndef _ECPGLIB_H typedef decimal dec_t; #endif /* ndef _ECPGLIB_H */