aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2002-05-29 11:58:21 +0000
committertradke <tradke@10716dce-81a3-4424-a2c8-48026a0d3035>2002-05-29 11:58:21 +0000
commite49cc0e02f41536cfc5d2bdc199c449925109b62 (patch)
tree1dc7962fc3ce5d0bae0d59a4ca1bb25d8b99e5c2
parente53db17ff31f4a0abebe0eb65aaa63c030155f01 (diff)
Removed unused variable to get rid of a compiler warning.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHSlab/trunk@84 10716dce-81a3-4424-a2c8-48026a0d3035
-rw-r--r--src/GetHyperslab.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/GetHyperslab.c b/src/GetHyperslab.c
index 6ad4f86..d254915 100644
--- a/src/GetHyperslab.c
+++ b/src/GetHyperslab.c
@@ -342,7 +342,6 @@ static int GetLocalHyperslab (const cGH *GH,
*endpoint; /* within the variable's grid dimensions */
int *downsample; /* the downsample[] vector extended to vdim */
int *points_per_dim; /* points per subvolume */
- int myproc; /* local processor ID */
int i; /* general looper */
int vdim; /* looper over all source dimensions */
int vdata_size, /* size of one data point in bytes for */
@@ -441,9 +440,6 @@ static int GetLocalHyperslab (const cGH *GH,
pughGH = PUGH_pGH (GH);
GA = (pGA *) pughGH->variables[vindex][timelevel];
- /* get the local processor ID */
- myproc = CCTK_MyProc (GH);
-
/* nested loop over vinfo.dim dimensions */
/* NOTE: the following code assumes startpoint[vdim] < endpoint[vdim] */
vdata = CCTK_VarDataPtrI (GH, timelevel, vindex);