aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@479a9caf-478d-4319-8268-cbb0ee841cc9>2004-05-17 12:28:58 +0000
committergoodale <goodale@479a9caf-478d-4319-8268-cbb0ee841cc9>2004-05-17 12:28:58 +0000
commit6550e7f8ac4fcf7065567d5819dbe4060be67a94 (patch)
tree07a495dcf16cef70d2ef91c6bc2c898e2bc9098a
parente5b11cd9445868d9903a4361cf3b2f9bf7d4a40f (diff)
Untabified. Please try to adhere to the Cactus coding guidelines when
modifying or adding files. git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyExtra/trunk@16 479a9caf-478d-4319-8268-cbb0ee841cc9
-rw-r--r--src/Boundary.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/Boundary.c b/src/Boundary.c
index bf84f39..e6a3bb6 100644
--- a/src/Boundary.c
+++ b/src/Boundary.c
@@ -66,24 +66,24 @@ void WaveToyExtra_Boundary(CCTK_ARGUMENTS)
{
if (handle == -1)
{
- handle = Util_TableCreateFromString(custom_options);
- if (handle < 0)
- {
- CCTK_VWarn(0,__LINE__,__FILE__,CCTK_THORNSTRING,
- "WaveToyC_Boundaries: Error creating table for "
- "boundary condition %s",custom_bound);
- }
+ handle = Util_TableCreateFromString(custom_options);
+ if (handle < 0)
+ {
+ CCTK_VWarn(0,__LINE__,__FILE__,CCTK_THORNSTRING,
+ "WaveToyC_Boundaries: Error creating table for "
+ "boundary condition %s",custom_bound);
+ }
}
}
ierr = Boundary_SelectVarForBC(cctkGH, CCTK_ALL_FACES, 1, handle,
- "wavetoy::phi",custom_bound);
+ "wavetoy::phi",custom_bound);
}
if (ierr < 0)
{
CCTK_VWarn(0,__LINE__,__FILE__,CCTK_THORNSTRING,
- "WaveToyC_Boundaries: Error selecting boundary "
- "condition %s",bound);
+ "WaveToyC_Boundaries: Error selecting boundary "
+ "condition %s",bound);
}
return;