From f080e493503285d86ad51007a29311c5afc39b71 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 14 Mar 2014 11:46:59 -0400 Subject: [PATCH] Add missing #include. Commit 31400a673 and siblings added a check_stack_depth() call in contrib/intarray/_int_bool.c, but neglected to note that in our oldest branches that file didn't have the #include that defines that function. This results in a fortunately-harmless compiler warning. Per buildfarm. --- contrib/intarray/_int_bool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/intarray/_int_bool.c b/contrib/intarray/_int_bool.c index 468a53a7bb..57c0219836 100644 --- a/contrib/intarray/_int_bool.c +++ b/contrib/intarray/_int_bool.c @@ -3,6 +3,7 @@ */ #include "postgres.h" +#include "miscadmin.h" #include "utils/builtins.h" #include "_int.h" -- 2.50.0