From e25138f3e9dbc7d115c96af38a94566e8803c9d3 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Tue, 23 Jan 2007 15:44:11 +0000 Subject: [PATCH] This patch is required for vcbuild to work after the changes to pg_proc.h (it's the same changes that's in gen_fmgrtab.sh in the unix build). Patch from Magnus Hagander. --- src/tools/msvc/Solution.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index c55f35d2dc..4086f428f5 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -133,9 +133,9 @@ sub GenerateFiles { oid => $p[0], proname => $p[1], prosrc => $p[$#p-2], - nargs => $p[10], - strict => $p[7], - retset => $p[8], + nargs => $p[12], + strict => $p[9], + retset => $p[10], }; } close(I); -- 2.11.0