Add missing #include.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 14 Mar 2014 15:47:03 +0000 (11:47 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 14 Mar 2014 15:47:03 +0000 (11:47 -0400)
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

index 468a53a7bbbf536c6ab6212c3d70430499993f1c..57c021983639fcd3048e074ffc027bd891b62a5d 100644 (file)
@@ -3,6 +3,7 @@
  */
 #include "postgres.h"
 
+#include "miscadmin.h"
 #include "utils/builtins.h"
 
 #include "_int.h"