From 4fbe0970b86343d9918275186b616ffef2bed22f Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Wed, 21 Oct 2020 10:04:32 +0900 Subject: [PATCH] Add missing "typedef" in declaration Addresses compiler issue raised in GitHub #19. --- src/firebird_fdw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firebird_fdw.h b/src/firebird_fdw.h index 567b06e..a9957bb 100644 --- a/src/firebird_fdw.h +++ b/src/firebird_fdw.h @@ -63,7 +63,7 @@ || (x) == NUMERICOID || (x) == DATEOID || (x) == TIMESTAMPOID \ || (x) == TIMEOID) -union opttype { +typedef union opttype { char **strptr; int *intptr; bool *boolptr;