aboutsummaryrefslogtreecommitdiff
path: root/src/NoneBoundary.c
diff options
context:
space:
mode:
authortradke <tradke@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-07-07 14:54:03 +0000
committertradke <tradke@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-07-07 14:54:03 +0000
commit7ebb090a5bc6c7d4205733018dd3c93a115fd58f (patch)
treecacb14eece28482011150e2af760573db6aee549 /src/NoneBoundary.c
parent9c96ad2308dc2ec42e6726e2be6bf4e0ba0b14c3 (diff)
Fixed loads of int/CCTK_INT variable type mismatches.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@239 6a38eb6e-646e-4a02-a296-d141613ad6c4
Diffstat (limited to 'src/NoneBoundary.c')
-rw-r--r--src/NoneBoundary.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/NoneBoundary.c b/src/NoneBoundary.c
index ab2f294..907b260 100644
--- a/src/NoneBoundary.c
+++ b/src/NoneBoundary.c
@@ -11,13 +11,13 @@
some other manner, but the symmetry boundaries should be
updated normally.
- BndNone is also used as a dummy local physical boundary
- condition, when the true physical bc is non-local.
+ BndNone is also used as a dummy local physical boundary
+ condition, when the true physical bc is non-local.
@enddesc
@history
- @hdate
- @hauthor
- @hdesc
+ @hdate
+ @hauthor
+ @hdesc
@endhistory
@version $Header$
@@*/
@@ -40,7 +40,7 @@ CCTK_FILEVERSION(CactusBase_Boundary_NoneBoundary_c);
@desc
Function which handles 'None' boundary condition
@enddesc
- @calls
+ @calls
@history
@endhistory
@var GH
@@ -50,38 +50,38 @@ CCTK_FILEVERSION(CactusBase_Boundary_NoneBoundary_c);
@endvar
@var num_vars
@vdesc number of variables passed in through var_indices[]
- @vtype int
+ @vtype CCTK_INT
@vio in
@endvar
@var var_indices
- @vdesc array of variable indicies to which to apply this boundary
+ @vdesc array of variable indicies to which to apply this boundary
condition
- @vtype int *
+ @vtype CCTK_INT *
@vio in
@endvar
@var faces
@vdesc array of set of faces to which to apply the bc
- @vtype int
+ @vtype CCTK_INT
@vio in
@endvar
@var widths
@vdesc array of boundary widths for each variable
- @vtype int
+ @vtype CCTK_INT
@vio in
@endvar
@var table_handles
@vdesc array of table handles which hold extra arguments
- @vtype int
+ @vtype CCTK_INT
@vio in
@endvar
- @returntype int
+ @returntype CCTK_INT
@returndesc
0 success
@endreturndesc
@@*/
-int BndNone(const cGH *GH, int num_vars, int *var_indices, int *faces, int *widths,
- int *table_handles)
+CCTK_INT BndNone(const cGH *GH, CCTK_INT num_vars, CCTK_INT *var_indices,
+ CCTK_INT *faces, CCTK_INT *widths, CCTK_INT *table_handles)
{
#ifdef DEBUG
printf("BndNone(): got passed GH=%p, num_vars=%d, var_indices[0]=%d, table_handles[0]=%d\n", (const void *) GH, num_vars, var_indices[0], table_handles[0]);