From 4e6de8925c991fa2ba8cdb41cb4c3ed2044330e0 Mon Sep 17 00:00:00 2001 From: knarf Date: Wed, 23 Feb 2005 10:46:10 +0000 Subject: fix a compile bug git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TwoPunctures/trunk@39 b2a53a04-0f4f-0410-87ed-f9f25ced00cf --- src/TwoPunctures.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/TwoPunctures.c b/src/TwoPunctures.c index 1398a0a..46f83ad 100644 --- a/src/TwoPunctures.c +++ b/src/TwoPunctures.c @@ -123,7 +123,7 @@ void set_initial_guess(CCTK_POINTER_TO_CONST cctkGH, { double d; indx = Index(0,0,i,0,1,n1,n2,n3); - d = PunctIntPolAtArbitPosition_(0, nvar, n1, n2, n3, v.d11, + d = PunctIntPolAtArbitPosition(0, nvar, n1, n2, n3, v, s_x[indx], 0.0, 0.0); fprintf(debug_file, "%.16g %.16g\n", s_x[indx], d); @@ -136,7 +136,7 @@ void set_initial_guess(CCTK_POINTER_TO_CONST cctkGH, indx = Index(0,0,i,0,1,n1,n2,n3); for (int j=-10; j<10; j++) { - d = PunctIntPolAtArbitPosition_(0, nvar, n1, n2, n3, v.d11, + d = PunctIntPolAtArbitPosition(0, nvar, n1, n2, n3, v, s_x[indx]+(s_x[ip]-s_x[indx])*j/10, 0.0, 0.0); fprintf(debug_file, "%.16g %.16g\n", -- cgit v1.2.3