summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-14 17:43:26 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-14 17:43:26 +0000
commit9a1eb2caf7a811fe7c31c72f85204407303613ba (patch)
treebad5b0bc86466990fdb341a4671b87ec8b8c9e7f /lib
parentf6a534d667c7eac22137d7f0464e9395ca11b7df (diff)
Changing names of internal array size parameters to start with cctkv to prevent
conflicts with user variables. We should really change to passing in as an array rather than <dim> seperate args. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2406 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib')
-rw-r--r--lib/sbin/GridFuncStuff.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sbin/GridFuncStuff.pl b/lib/sbin/GridFuncStuff.pl
index 4f0d0d25..eafd703b 100644
--- a/lib/sbin/GridFuncStuff.pl
+++ b/lib/sbin/GridFuncStuff.pl
@@ -266,15 +266,15 @@ sub GetThornArguments
for($dim =0; $dim < $rhinterface_db->{"\U$thorn GROUP $group DIM\E"}; $dim++)
{
- $type .= "$sep$group$dim";
+ $type .= "${sep}cctkv$group$dim";
$sep = ",";
if($block eq "PRIVATE")
{
- $arguments{"$group$dim"} = "(STORAGESIZE($thorn\::$group, $dim))";
+ $arguments{"cctkv$group$dim"} = "(STORAGESIZE($thorn\::$group, $dim))";
}
else
{
- $arguments{"$group$dim"} = "(STORAGESIZE($imp\::$group, $dim))";
+ $arguments{"cctkv$group$dim"} = "(STORAGESIZE($imp\::$group, $dim))";
}
}
if(defined($vararraysize) && $compactgroup == 0)