aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-09-09 20:49:33 +0000
committeryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-09-09 20:49:33 +0000
commit4dc4cc1abbba26255a20687642017e358cf8e124 (patch)
treece1334aab3e61d50a05f480a8b82f8ec25854b2c
parent1871e8c35d52d772c88e90481378126dee5d9c53 (diff)
fix typo
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalReduce/trunk@41 7daa882c-dc44-4453-834e-278d26b18e6a
-rw-r--r--src/ReductionAvg.c2
-rw-r--r--src/ReductionNorm1.c2
-rw-r--r--src/ReductionNorm2.c2
-rw-r--r--src/ReductionNorm3.c2
-rw-r--r--src/ReductionNorm4.c2
-rw-r--r--src/ReductionNormInf.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/ReductionAvg.c b/src/ReductionAvg.c
index ac3f8ce..51db04b 100644
--- a/src/ReductionAvg.c
+++ b/src/ReductionAvg.c
@@ -1290,7 +1290,7 @@ static int ReductionAvg (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNorm1.c b/src/ReductionNorm1.c
index 1fb4942..b54952e 100644
--- a/src/ReductionNorm1.c
+++ b/src/ReductionNorm1.c
@@ -1331,7 +1331,7 @@ static int ReductionL1 (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNorm2.c b/src/ReductionNorm2.c
index 9cb1a4f..1b4217a 100644
--- a/src/ReductionNorm2.c
+++ b/src/ReductionNorm2.c
@@ -1297,7 +1297,7 @@ static int ReductionL2 (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNorm3.c b/src/ReductionNorm3.c
index be2e6df..07969d5 100644
--- a/src/ReductionNorm3.c
+++ b/src/ReductionNorm3.c
@@ -1329,7 +1329,7 @@ static int ReductionL3 (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNorm4.c b/src/ReductionNorm4.c
index b7520bf..4ad4882 100644
--- a/src/ReductionNorm4.c
+++ b/src/ReductionNorm4.c
@@ -1294,7 +1294,7 @@ static int ReductionL4 (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNormInf.c b/src/ReductionNormInf.c
index 3380e00..fbbad6b 100644
--- a/src/ReductionNormInf.c
+++ b/src/ReductionNormInf.c
@@ -1341,7 +1341,7 @@ static int ReductionLInf (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif