summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/comm/CactusDefaultComm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comm/CactusDefaultComm.c b/src/comm/CactusDefaultComm.c
index 5f6db79f..5f0e0f29 100644
--- a/src/comm/CactusDefaultComm.c
+++ b/src/comm/CactusDefaultComm.c
@@ -185,7 +185,7 @@ cGH *CactusDefaultSetupGH(tFleshConfig *config, int convergence_level)
n_variables = CCTK_NumVars();
/* Allocate memory for the variable data pointers.
- * Note we want at least one to prevent memory allocattion from failing !
+ * Note we want at least one to prevent memory allocation from failing!
*/
thisGH->data = malloc((n_variables ? n_variables:1)*sizeof(void **));
if(thisGH->data)
@@ -205,7 +205,7 @@ cGH *CactusDefaultSetupGH(tFleshConfig *config, int convergence_level)
thisGH->extensions = NULL;
/* Allocate memory for the group data pointers.
- * Note we want at least one to prevent memory allocattion from failing !
+ * Note we want at least one to prevent memory allocation from failing !
*/
n_groups = CCTK_NumGroups();
thisGH->GroupData = malloc((n_groups ? n_groups:1)*sizeof(cGHGroupData));