aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@50555cc7-fb31-491a-85db-9a2874240742>2000-07-12 11:58:56 +0000
committerallen <allen@50555cc7-fb31-491a-85db-9a2874240742>2000-07-12 11:58:56 +0000
commitd2cf1e345257069f3b84d36b7165bbeb626215e8 (patch)
tree21a8d649eda6b5b77757955d8d37e38651ae7d13 /src
parent2ba261a3612f0a23d8745b1fcf68124f1325d2d3 (diff)
Beta 8 name changes
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyCXX/trunk@31 50555cc7-fb31-491a-85db-9a2874240742
Diffstat (limited to 'src')
-rw-r--r--src/WaveToy.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WaveToy.cc b/src/WaveToy.cc
index 3ff99a4..b730fce 100644
--- a/src/WaveToy.cc
+++ b/src/WaveToy.cc
@@ -112,7 +112,7 @@ extern "C" void WaveToyCXX_Boundaries(CCTK_ARGUMENTS)
DECLARE_CCTK_ARGUMENTS
DECLARE_CCTK_PARAMETERS
- int ierr;
+ int ierr=-1;
int sw[3];
/* Set the stencil width */
@@ -124,11 +124,11 @@ extern "C" void WaveToyCXX_Boundaries(CCTK_ARGUMENTS)
if (CCTK_Equals(bound,"flat"))
{
- ierr = FlatBCVar(cctkGH,sw,"wavetoy::phi");
+ ierr = BndFlatVN(cctkGH,sw,"wavetoy::phi");
}
else if (CCTK_Equals(bound,"radiation"))
{
- ierr = RadiativeBCVar(cctkGH,0,1,sw,"wavetoy::phi","wavetoy::phi");
+ ierr = BndRadiativeVN(cctkGH,sw,0,1,"wavetoy::phi","wavetoy::phi");
}
if (ierr < 0)